diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-03 21:20:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-03 21:20:34 -0400 |
commit | 2afe8ac4a714de836ee58b45598a25c687a1bf12 (patch) | |
tree | 18af783e535a854dd2fea5e6538b442c2372f994 /src/core/core.cpp | |
parent | 9cfe2414cbd02f9c5d1cc4c786e56cc1b1803299 (diff) | |
parent | a40537314405d62baa012836da9bba24ad4b02e5 (diff) |
Merge pull request #1229 from lioncash/forward-decl
vfs_real: Forward declare IOFile
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 2cfae18dfb..29983b9b40 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -14,6 +14,9 @@ #include "core/core.h" #include "core/core_cpu.h" #include "core/core_timing.h" +#include "core/file_sys/mode.h" +#include "core/file_sys/vfs_concat.h" +#include "core/file_sys/vfs_real.h" #include "core/gdbstub/gdbstub.h" #include "core/hle/kernel/client_port.h" #include "core/hle/kernel/kernel.h" @@ -27,8 +30,6 @@ #include "core/perf_stats.h" #include "core/settings.h" #include "core/telemetry_session.h" -#include "file_sys/vfs_concat.h" -#include "file_sys/vfs_real.h" #include "video_core/debug_utils/debug_utils.h" #include "video_core/gpu.h" #include "video_core/renderer_base.h" |