diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-09-27 09:19:53 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-09-27 09:20:06 -0400 |
commit | 70e86248fd6b09590ad66ad534195e3a6a3e934b (patch) | |
tree | 21e7bd573c3091a7d700dcc927f6e8f104887dde /src/yuzu/main.cpp | |
parent | 7b81e1e52565ee867c285e2b0c2526f8d4b82581 (diff) |
qt: Install System TitleTypes to System NAND
Fixes an issue where installed system archive NCAs would be installed to user NAND and not recognized by games.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index dc8b5407d..cb37796fa 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1055,11 +1055,21 @@ void GMainWindow::OnMenuInstallToNAND() { return; } - if (index >= 5) - index += 0x7B; + // If index is equal to or past Game, add the jump in TitleType. + if (index >= 5) { + index += static_cast<size_t>(FileSys::TitleType::Application) - + static_cast<size_t>(FileSys::TitleType::FirmwarePackageB); + } + + FileSys::InstallResult res; + if (index >= static_cast<size_t>(FileSys::TitleType::Application)) { + res = Service::FileSystem::GetUserNANDContents()->InstallEntry( + nca, static_cast<FileSys::TitleType>(index), false, qt_raw_copy); + } else { + res = Service::FileSystem::GetSystemNANDContents()->InstallEntry( + nca, static_cast<FileSys::TitleType>(index), false, qt_raw_copy); + } - const auto res = Service::FileSystem::GetUserNANDContents()->InstallEntry( - nca, static_cast<FileSys::TitleType>(index), false, qt_raw_copy); if (res == FileSys::InstallResult::Success) { success(); } else if (res == FileSys::InstallResult::ErrorAlreadyExists) { |