-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
144 changed files
with
2,504 additions
and
3,178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <[email protected]> | ||
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) | ||
|
||
#include "achievements.h" | ||
#include "achievements_private.h" | ||
#include "bios.h" | ||
#include "bus.h" | ||
#include "cpu_core.h" | ||
#include "fullscreen_ui.h" | ||
#include "host.h" | ||
#include "host_settings.h" | ||
#include "system.h" | ||
|
||
#include "scmversion/scmversion.h" | ||
|
||
#include "common/assert.h" | ||
#include "common/file_system.h" | ||
#include "common/http_downloader.h" | ||
|
@@ -10,26 +20,20 @@ | |
#include "common/path.h" | ||
#include "common/platform.h" | ||
#include "common/string_util.h" | ||
#include "core/bios.h" | ||
#include "core/bus.h" | ||
#include "core/cpu_core.h" | ||
#include "core/host.h" | ||
#include "core/host_display.h" | ||
#include "core/host_settings.h" | ||
#include "core/system.h" | ||
#include "fullscreen_ui.h" | ||
#include "imgui_fullscreen.h" | ||
#include "platform_misc.h" | ||
|
||
#include "util/cd_image.h" | ||
#include "util/imgui_fullscreen.h" | ||
#include "util/platform_misc.h" | ||
#include "util/state_wrapper.h" | ||
|
||
#include "rapidjson/document.h" | ||
#include "rc_api_info.h" | ||
#include "rc_api_request.h" | ||
#include "rc_api_runtime.h" | ||
#include "rc_api_user.h" | ||
#include "rc_url.h" | ||
#include "rcheevos.h" | ||
#include "scmversion/scmversion.h" | ||
#include "util/cd_image.h" | ||
#include "util/state_wrapper.h" | ||
|
||
#include <algorithm> | ||
#include <atomic> | ||
#include <cstdarg> | ||
|
@@ -38,6 +42,7 @@ | |
#include <functional> | ||
#include <string> | ||
#include <vector> | ||
|
||
Log_SetChannel(Achievements); | ||
|
||
#ifdef WITH_RAINTEGRATION | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
#pragma once | ||
#include "common/types.h" | ||
|
||
#include <string> | ||
|
||
class StateWrapper; | ||
class CDImage; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.