diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-02 10:53:06 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-02 12:38:14 -0400 |
commit | a40537314405d62baa012836da9bba24ad4b02e5 (patch) | |
tree | e713eda9ce20870d7e803989d555e7842eab3415 /src/core/core.cpp | |
parent | 325f3e0693ab503b308d28958415de0072b46555 (diff) |
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.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" |