Allow NRO files to skip FW and keys' presence checks (#11)
suyu-ci / reuse (push) Has been cancelled Details
codespell / Check for spelling errors (push) Has been cancelled Details
suyu verify / Verify Format (push) Has been cancelled Details
suyu verify / test build (linux-fresh, clang) (push) Has been cancelled Details
suyu verify / test build (linux-fresh, linux) (push) Has been cancelled Details
suyu verify / test build (linux-mingw, windows) (push) Has been cancelled Details
suyu verify / android (push) Has been cancelled Details

doing an old suggestion from the now-deleted "emulator-suggestions" channel on the discord
Co-authored-by: nullequal <nullequal@noreply.localhost>
Co-committed-by: nullequal <nullequal@noreply.localhost>
This commit is contained in:
null 2024-03-23 16:31:28 +01:00 committed by Exverge
parent 18ba0f1345
commit 15ca12c0ec
1 changed files with 14 additions and 11 deletions

View File

@ -1747,18 +1747,21 @@ void GMainWindow::AllowOSSleep() {
}
bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletParameters params) {
if (!CheckFirmwarePresence()) {
QMessageBox::critical(this, tr("Component Missing"), tr("Missing Firmware."));
return false;
}
if (Loader::IdentifyType(Core::GetGameFileFromPath(vfs, filename.toStdString())) !=
Loader::FileType::NRO) {
if (!CheckFirmwarePresence()) {
QMessageBox::critical(this, tr("Component Missing"), tr("Missing Firmware."));
return false;
}
if (!ContentManager::AreKeysPresent()) {
QMessageBox::warning(this, tr("Derivation Components Missing"),
tr("Encryption keys are missing. "
"In order to use this emulator, "
"you need to provide your own encryption keys "
"in order to play them."));
return false;
if (!ContentManager::AreKeysPresent()) {
QMessageBox::warning(this, tr("Derivation Components Missing"),
tr("Encryption keys are missing. "
"In order to use this emulator, "
"you need to provide your own encryption keys "
"in order to play them."));
return false;
}
}
// Shutdown previous session if the emu thread is still active...