diff options
| author | 2014-12-15 02:44:04 -0200 | |
|---|---|---|
| committer | 2014-12-16 01:08:42 -0200 | |
| commit | f6153679b0781eea084b22f3ceecc74b1fe6b018 (patch) | |
| tree | aa8d86cb2a525630c3abf95cfaa658e3fd634516 /src/core/loader/loader.cpp | |
| parent | HLE: Rename namespaces to match move & fix initialization order (diff) | |
| download | yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.gz yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.xz yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.zip | |
Service.FS: Do archive registration using IdCode instead of name
Diffstat (limited to 'src/core/loader/loader.cpp')
| -rw-r--r-- | src/core/loader/loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 6ce752561..49f8c458d 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -74,7 +74,7 @@ ResultStatus LoadFile(const std::string& filename) { | |||
| 74 | 74 | ||
| 75 | // Load application and RomFS | 75 | // Load application and RomFS |
| 76 | if (ResultStatus::Success == app_loader.Load()) { | 76 | if (ResultStatus::Success == app_loader.Load()) { |
| 77 | Service::FS::CreateArchive(new FileSys::Archive_RomFS(app_loader), "RomFS"); | 77 | Service::FS::CreateArchive(new FileSys::Archive_RomFS(app_loader), Service::FS::ArchiveIdCode::RomFS); |
| 78 | return ResultStatus::Success; | 78 | return ResultStatus::Success; |
| 79 | } | 79 | } |
| 80 | break; | 80 | break; |