BIOS: Make SCPH-3000 BIOS known

This commit is contained in:
Connor McLaughlin
2020-04-07 11:54:24 +10:00
parent b4538b1d2e
commit 610abc1a75
2 changed files with 9 additions and 6 deletions

View File

@ -411,6 +411,8 @@ std::optional<std::vector<u8>> HostInterface::GetBIOSImage(ConsoleRegion region)
case ConsoleRegion::NTSC_J:
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph1000.bin"));
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-10j.bin"));
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph3000.bin"));
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-11j.bin"));
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph5500.bin"));
TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-30j.bin"));
break;