diff options
author | bunnei <bunneidev@gmail.com> | 2017-10-10 03:39:32 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-10-10 03:39:32 +0200 |
commit | 23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6 (patch) | |
tree | 168e7793c6d68eb8b195850a056443ea98f430a9 /src/core/loader/loader.cpp | |
parent | loader: Add support for NRO, as well as various fixes and shared linker. (diff) | |
download | yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.gz yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.bz2 yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.lz yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.xz yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.zst yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.zip |
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r-- | src/core/loader/loader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index d96b9f1f0..73318c584 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp @@ -121,11 +121,11 @@ static std::unique_ptr<AppLoader> GetFileLoader(FileUtil::IOFile&& file, FileTyp // NX NSO file format. case FileType::NSO: - return std::make_unique<AppLoader_NSO>(std::move(file), filename, filepath); + return std::make_unique<AppLoader_NSO>(std::move(file), filepath); // NX NRO file format. case FileType::NRO: - return std::make_unique<AppLoader_NRO>(std::move(file), filename, filepath); + return std::make_unique<AppLoader_NRO>(std::move(file), filepath); default: return nullptr; |