Revert "chore: Make firmware optional rather than required"

This reverts commit 257aad2431.
This commit is contained in:
Zephyron 2025-05-01 14:58:48 +10:00
parent 1bf27ebbb9
commit 5d3e75c25f
5 changed files with 125 additions and 11 deletions

View file

@ -260,10 +260,12 @@ std::unique_ptr<AppLoader> GetLoader(Core::System& system, FileSys::VirtualFile
if (bis_system) {
auto mii_applet_nca = bis_system->GetEntry(MiiEditId, FileSys::ContentRecordType::Program);
if (!mii_applet_nca) {
LOG_WARNING(Loader, "Firmware is not available. Some games may not function correctly.");
LOG_ERROR(Loader, "Firmware is required to launch games but is not available");
return nullptr;
}
} else {
LOG_WARNING(Loader, "System NAND contents not available");
LOG_ERROR(Loader, "System NAND contents not available");
return nullptr;
}
FileType type = IdentifyFile(file);