diff options
| -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 { | |||
| 63 | class Archive { | 63 | class Archive { |
| 64 | public: | 64 | public: |
| 65 | Archive(std::unique_ptr<FileSys::ArchiveBackend>&& backend, ArchiveIdCode id_code) | 65 | Archive(std::unique_ptr<FileSys::ArchiveBackend>&& backend, ArchiveIdCode id_code) |
| 66 | : backend(std::move(backend)), id_code(id_code) { | 66 | : id_code(id_code), backend(std::move(backend)) { |
| 67 | } | 67 | } |
| 68 | 68 | ||
| 69 | std::string GetName() const { return "Archive: " + backend->GetName(); } | 69 | std::string GetName() const { return "Archive: " + backend->GetName(); } |
| @@ -75,7 +75,7 @@ public: | |||
| 75 | class File : public Kernel::Session { | 75 | class File : public Kernel::Session { |
| 76 | public: | 76 | public: |
| 77 | File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) | 77 | File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) |
| 78 | : backend(std::move(backend)), path(path) { | 78 | : path(path), backend(std::move(backend)) { |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | std::string GetName() const override { return "Path: " + path.DebugStr(); } | 81 | std::string GetName() const override { return "Path: " + path.DebugStr(); } |
| @@ -160,7 +160,7 @@ public: | |||
| 160 | class Directory : public Kernel::Session { | 160 | class Directory : public Kernel::Session { |
| 161 | public: | 161 | public: |
| 162 | Directory(std::unique_ptr<FileSys::DirectoryBackend>&& backend, const FileSys::Path& path) | 162 | Directory(std::unique_ptr<FileSys::DirectoryBackend>&& backend, const FileSys::Path& path) |
| 163 | : backend(std::move(backend)), path(path) { | 163 | : path(path), backend(std::move(backend)) { |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | std::string GetName() const override { return "Directory: " + path.DebugStr(); } | 166 | std::string GetName() const override { return "Directory: " + path.DebugStr(); } |