diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-31 21:50:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 21:50:12 -0400 |
commit | 1c05c06e048c0471653275dcb00f391acbfd6324 (patch) | |
tree | 8eda46d4aac083d23a52223e1a3fc46bc6690a6c /src/yuzu/main.cpp | |
parent | 42588493d5ad5d824fc557ac936e64e5e7fd7e44 (diff) | |
parent | 4a587b81b285bcd41246329e89591be7cfe37c8a (diff) |
Merge pull request #1212 from lioncash/forward-decl
core/core: Replace includes with forward declarations where applicable
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 1501aedc4..e11ba7854 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -21,22 +21,22 @@ #include "common/logging/backend.h" #include "common/logging/filter.h" #include "common/logging/log.h" -#include "common/logging/text_formatter.h" #include "common/microprofile.h" #include "common/scm_rev.h" #include "common/scope_exit.h" #include "common/string_util.h" +#include "common/telemetry.h" #include "core/core.h" #include "core/crypto/key_manager.h" -#include "core/file_sys/bis_factory.h" #include "core/file_sys/card_image.h" #include "core/file_sys/registered_cache.h" #include "core/file_sys/savedata_factory.h" #include "core/file_sys/vfs_real.h" -#include "core/gdbstub/gdbstub.h" +#include "core/hle/service/filesystem/filesystem.h" #include "core/loader/loader.h" +#include "core/perf_stats.h" #include "core/settings.h" -#include "game_list_p.h" +#include "core/telemetry_session.h" #include "video_core/debug_utils/debug_utils.h" #include "yuzu/about_dialog.h" #include "yuzu/bootmanager.h" @@ -48,6 +48,7 @@ #include "yuzu/debugger/profiler.h" #include "yuzu/debugger/wait_tree.h" #include "yuzu/game_list.h" +#include "yuzu/game_list_p.h" #include "yuzu/hotkeys.h" #include "yuzu/main.h" #include "yuzu/ui_settings.h" |