mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-12 01:42:46 +00:00
main: Make game updates installable
This commit is contained in:
parent
8e150c46b9
commit
f92b3512e0
|
@ -868,7 +868,11 @@ void GMainWindow::OnMenuInstallToNAND() {
|
||||||
} else {
|
} else {
|
||||||
const auto nca = std::make_shared<FileSys::NCA>(
|
const auto nca = std::make_shared<FileSys::NCA>(
|
||||||
vfs->OpenFile(filename.toStdString(), FileSys::Mode::Read));
|
vfs->OpenFile(filename.toStdString(), FileSys::Mode::Read));
|
||||||
if (nca->GetStatus() != Loader::ResultStatus::Success) {
|
const auto id = nca->GetStatus();
|
||||||
|
|
||||||
|
// Game updates necessary are missing base RomFS
|
||||||
|
if (nca->GetStatus() != Loader::ResultStatus::Success &&
|
||||||
|
nca->GetStatus() != Loader::ResultStatus::ErrorMissingBKTRBaseRomFS) {
|
||||||
failed();
|
failed();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue