diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-31 18:21:34 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-31 22:30:14 +0200 |
commit | 4a587b81b285bcd41246329e89591be7cfe37c8a (patch) | |
tree | 8eda46d4aac083d23a52223e1a3fc46bc6690a6c /src/core/file_sys | |
parent | Merge pull request #1205 from bunnei/improve-rasterizer-cache-2 (diff) | |
download | yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar.gz yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar.bz2 yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar.lz yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar.xz yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.tar.zst yuzu-4a587b81b285bcd41246329e89591be7cfe37c8a.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/savedata_factory.cpp | 1 | ||||
-rw-r--r-- | src/core/file_sys/savedata_factory.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/file_sys/savedata_factory.cpp b/src/core/file_sys/savedata_factory.cpp index 034d3a78f..952bd74b3 100644 --- a/src/core/file_sys/savedata_factory.cpp +++ b/src/core/file_sys/savedata_factory.cpp @@ -7,6 +7,7 @@ #include "common/logging/log.h" #include "core/core.h" #include "core/file_sys/savedata_factory.h" +#include "core/file_sys/vfs.h" #include "core/hle/kernel/process.h" namespace FileSys { diff --git a/src/core/file_sys/savedata_factory.h b/src/core/file_sys/savedata_factory.h index 368b36017..c6f9549f0 100644 --- a/src/core/file_sys/savedata_factory.h +++ b/src/core/file_sys/savedata_factory.h @@ -8,6 +8,7 @@ #include <string> #include "common/common_types.h" #include "common/swap.h" +#include "core/file_sys/vfs.h" #include "core/hle/result.h" namespace FileSys { |