diff options
| author | 2014-12-15 05:03:17 -0200 | |
|---|---|---|
| committer | 2014-12-16 01:08:43 -0200 | |
| commit | 0931a42af0c0666dd9fbc20484b399c0e1ad3361 (patch) | |
| tree | 2d01160a592318c8bcfcba46b21fee90216c09e1 /src/core/hle | |
| parent | Service.FS: Rename FileSys::Directory to DirectoryBackend (diff) | |
| download | yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.gz yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.xz yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.zip | |
Service.FS: Rename FileSys::File to FileBackend
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index 9a3725138..d04e5b2e7 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -112,7 +112,7 @@ public: | |||
| 112 | std::string GetName() const override { return "Path: " + path.DebugStr(); } | 112 | std::string GetName() const override { return "Path: " + path.DebugStr(); } |
| 113 | 113 | ||
| 114 | FileSys::Path path; ///< Path of the file | 114 | FileSys::Path path; ///< Path of the file |
| 115 | std::unique_ptr<FileSys::File> backend; ///< File backend interface | 115 | std::unique_ptr<FileSys::FileBackend> backend; ///< File backend interface |
| 116 | 116 | ||
| 117 | ResultVal<bool> SyncRequest() override { | 117 | ResultVal<bool> SyncRequest() override { |
| 118 | u32* cmd_buff = Kernel::GetCommandBuffer(); | 118 | u32* cmd_buff = Kernel::GetCommandBuffer(); |