Allow NRO files to skip FW and keys' presence checks (#11)
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:
parent
18ba0f1345
commit
15ca12c0ec
1 changed files with 14 additions and 11 deletions
|
@ -1747,6 +1747,8 @@ void GMainWindow::AllowOSSleep() {
|
|||
}
|
||||
|
||||
bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletParameters params) {
|
||||
if (Loader::IdentifyType(Core::GetGameFileFromPath(vfs, filename.toStdString())) !=
|
||||
Loader::FileType::NRO) {
|
||||
if (!CheckFirmwarePresence()) {
|
||||
QMessageBox::critical(this, tr("Component Missing"), tr("Missing Firmware."));
|
||||
return false;
|
||||
|
@ -1760,6 +1762,7 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa
|
|||
"in order to play them."));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Shutdown previous session if the emu thread is still active...
|
||||
if (emu_thread != nullptr) {
|
||||
|
|
Loading…
Reference in a new issue