diff options
| author | 2014-12-15 04:59:29 -0200 | |
|---|---|---|
| committer | 2014-12-16 01:08:43 -0200 | |
| commit | d51afab0bc3a7e06a73f9f51afaf26cf83d87cd2 (patch) | |
| tree | ea9edc999f2c192d4d0b1234253f43aa9a8c8b0f /src/core/hle | |
| parent | Service.FS: Rename FileSys::Archive to ArchiveBackend (diff) | |
| download | yuzu-d51afab0bc3a7e06a73f9f51afaf26cf83d87cd2.tar.gz yuzu-d51afab0bc3a7e06a73f9f51afaf26cf83d87cd2.tar.xz yuzu-d51afab0bc3a7e06a73f9f51afaf26cf83d87cd2.zip | |
Service.FS: Rename FileSys::Directory to DirectoryBackend
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(); |