diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index 6ec310a63..9a3725138 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | #include "core/file_sys/archive_backend.h" | 11 | #include "core/file_sys/archive_backend.h" |
| 12 | #include "core/file_sys/archive_sdmc.h" | 12 | #include "core/file_sys/archive_sdmc.h" |
| 13 | #include "core/file_sys/directory.h" | 13 | #include "core/file_sys/directory_backend.h" |
| 14 | #include "core/hle/service/fs/archive.h" | 14 | #include "core/hle/service/fs/archive.h" |
| 15 | #include "core/hle/kernel/session.h" | 15 | #include "core/hle/kernel/session.h" |
| 16 | #include "core/hle/result.h" | 16 | #include "core/hle/result.h" |
| @@ -186,7 +186,7 @@ public: | |||
| 186 | std::string GetName() const override { return "Directory: " + path.DebugStr(); } | 186 | std::string GetName() const override { return "Directory: " + path.DebugStr(); } |
| 187 | 187 | ||
| 188 | FileSys::Path path; ///< Path of the directory | 188 | FileSys::Path path; ///< Path of the directory |
| 189 | std::unique_ptr<FileSys::Directory> backend; ///< File backend interface | 189 | std::unique_ptr<FileSys::DirectoryBackend> backend; ///< File backend interface |
| 190 | 190 | ||
| 191 | ResultVal<bool> SyncRequest() override { | 191 | ResultVal<bool> SyncRequest() override { |
| 192 | u32* cmd_buff = Kernel::GetCommandBuffer(); | 192 | u32* cmd_buff = Kernel::GetCommandBuffer(); |