diff options
author | Lioncash <mathew1800@gmail.com> | 2015-01-03 02:30:57 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-01-03 02:30:57 +0100 |
commit | 0d81b1e75be62e6f7770cdbb823acba63b10c955 (patch) | |
tree | 6c9bb88180b105b8b9b5351bcffef4cc97f2ae35 /src | |
parent | Merge pull request #382 from lioncash/sx (diff) | |
download | yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar.gz yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar.bz2 yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar.lz yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar.xz yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.tar.zst yuzu-0d81b1e75be62e6f7770cdbb823acba63b10c955.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/fs/archive.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index f19ca3a9f..9a91bcb8b 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp @@ -63,7 +63,7 @@ enum class DirectoryCommand : u32 { class Archive { public: Archive(std::unique_ptr<FileSys::ArchiveBackend>&& backend, ArchiveIdCode id_code) - : backend(std::move(backend)), id_code(id_code) { + : id_code(id_code), backend(std::move(backend)) { } std::string GetName() const { return "Archive: " + backend->GetName(); } @@ -75,7 +75,7 @@ public: class File : public Kernel::Session { public: File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) - : backend(std::move(backend)), path(path) { + : path(path), backend(std::move(backend)) { } std::string GetName() const override { return "Path: " + path.DebugStr(); } @@ -160,7 +160,7 @@ public: class Directory : public Kernel::Session { public: Directory(std::unique_ptr<FileSys::DirectoryBackend>&& backend, const FileSys::Path& path) - : backend(std::move(backend)), path(path) { + : path(path), backend(std::move(backend)) { } std::string GetName() const override { return "Directory: " + path.DebugStr(); } |