diff options
| author | 2015-01-30 11:30:22 -0500 | |
|---|---|---|
| committer | 2015-01-30 11:30:22 -0500 | |
| commit | 551264f815e019996d0c3599e40219e75095a670 (patch) | |
| tree | ff1270bf9db3ff36c2a2ee2ff7f15f2da89f3b33 /src/core | |
| parent | apt_u: Fix missing printf specifiers (diff) | |
| download | yuzu-551264f815e019996d0c3599e40219e75095a670.tar.gz yuzu-551264f815e019996d0c3599e40219e75095a670.tar.xz yuzu-551264f815e019996d0c3599e40219e75095a670.zip | |
archive: Fix initializer list order for the File class.
Diffstat (limited to 'src/core')
| -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 6682f6590..43eef034e 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -89,7 +89,7 @@ public: | |||
| 89 | class File : public Kernel::Session { | 89 | class File : public Kernel::Session { |
| 90 | public: | 90 | public: |
| 91 | File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) | 91 | File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) |
| 92 | : path(path), backend(std::move(backend)), priority(0) { | 92 | : path(path), priority(0), backend(std::move(backend)) { |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | std::string GetName() const override { return "Path: " + path.DebugStr(); } | 95 | std::string GetName() const override { return "Path: " + path.DebugStr(); } |