summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-15 08:03:17 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-16 04:08:43 +0100
commit0931a42af0c0666dd9fbc20484b399c0e1ad3361 (patch)
tree2d01160a592318c8bcfcba46b21fee90216c09e1 /src/core/hle/service/fs/archive.cpp
parentService.FS: Rename FileSys::Directory to DirectoryBackend (diff)
downloadyuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.gz
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.bz2
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.lz
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.xz
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.tar.zst
yuzu-0931a42af0c0666dd9fbc20484b399c0e1ad3361.zip
Diffstat (limited to 'src/core/hle/service/fs/archive.cpp')
-rw-r--r--src/core/hle/service/fs/archive.cpp2
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:
std::string GetName() const override { return "Path: " + path.DebugStr(); }
FileSys::Path path; ///< Path of the file
- std::unique_ptr<FileSys::File> backend; ///< File backend interface
+ std::unique_ptr<FileSys::FileBackend> backend; ///< File backend interface
ResultVal<bool> SyncRequest() override {
u32* cmd_buff = Kernel::GetCommandBuffer();