summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-09-02 10:53:06 -0400
committerGravatar Lioncash2018-09-02 12:38:14 -0400
commita40537314405d62baa012836da9bba24ad4b02e5 (patch)
treee713eda9ce20870d7e803989d555e7842eab3415 /src/core/core.cpp
parentMerge pull request #1213 from DarkLordZach/octopath-fs (diff)
downloadyuzu-a40537314405d62baa012836da9bba24ad4b02e5.tar.gz
yuzu-a40537314405d62baa012836da9bba24ad4b02e5.tar.xz
yuzu-a40537314405d62baa012836da9bba24ad4b02e5.zip
vfs_real: Forward declare IOFile
Eliminates the need to rebuild some source files if the file_util header ever changes. This also uncovered some indirect inclusions, which have also been fixed.
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 2cfae18df..29983b9b4 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -14,6 +14,9 @@
14#include "core/core.h" 14#include "core/core.h"
15#include "core/core_cpu.h" 15#include "core/core_cpu.h"
16#include "core/core_timing.h" 16#include "core/core_timing.h"
17#include "core/file_sys/mode.h"
18#include "core/file_sys/vfs_concat.h"
19#include "core/file_sys/vfs_real.h"
17#include "core/gdbstub/gdbstub.h" 20#include "core/gdbstub/gdbstub.h"
18#include "core/hle/kernel/client_port.h" 21#include "core/hle/kernel/client_port.h"
19#include "core/hle/kernel/kernel.h" 22#include "core/hle/kernel/kernel.h"
@@ -27,8 +30,6 @@
27#include "core/perf_stats.h" 30#include "core/perf_stats.h"
28#include "core/settings.h" 31#include "core/settings.h"
29#include "core/telemetry_session.h" 32#include "core/telemetry_session.h"
30#include "file_sys/vfs_concat.h"
31#include "file_sys/vfs_real.h"
32#include "video_core/debug_utils/debug_utils.h" 33#include "video_core/debug_utils/debug_utils.h"
33#include "video_core/gpu.h" 34#include "video_core/gpu.h"
34#include "video_core/renderer_base.h" 35#include "video_core/renderer_base.h"