mirror of
https://github.com/ong19th/Citron.git
synced 2025-12-12 13:36:57 +00:00
Revert "chore: Make firmware optional rather than required"
This reverts commit 257aad2431.
This commit is contained in:
parent
1bf27ebbb9
commit
5d3e75c25f
5 changed files with 125 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue