diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-15 08:03:17 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-16 04:08:43 +0100 |
commit | 0931a42af0c0666dd9fbc20484b399c0e1ad3361 (patch) | |
tree | 2d01160a592318c8bcfcba46b21fee90216c09e1 /src/core/hle | |
parent | Service.FS: Rename FileSys::Directory to DirectoryBackend (diff) | |
download | yuzu-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')
-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: 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(); |