From b4538b1d2e070c755163e2286621a5478786908a Mon Sep 17 00:00:00 2001
From: Connor McLaughlin <stenzek@gmail.com>
Date: Tue, 7 Apr 2020 11:53:30 +1000
Subject: [PATCH] HostInterface: Add redump BIOS filenames to search list

ps-10x.bin, ps-30x.bin, etc.
---
 src/core/host_interface.cpp | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp
index b99be449c..a0b93ee28 100644
--- a/src/core/host_interface.cpp
+++ b/src/core/host_interface.cpp
@@ -68,10 +68,7 @@ bool HostInterface::Initialize()
   return true;
 }
 
-void HostInterface::Shutdown()
-{
-
-}
+void HostInterface::Shutdown() {}
 
 void HostInterface::CreateAudioStream()
 {
@@ -413,17 +410,23 @@ 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, "scph5500.bin"));
+      TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-30j.bin"));
       break;
 
     case ConsoleRegion::NTSC_U:
       TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph1001.bin"));
+      TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-22a.bin"));
       TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph5501.bin"));
+      TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-30a.bin"));
       break;
 
     case ConsoleRegion::PAL:
       TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph1002.bin"));
+      TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-21e.bin"));
       TRY_FILENAME(GetRelativePath(m_settings.bios_path, "scph5502.bin"));
+      TRY_FILENAME(GetRelativePath(m_settings.bios_path, "ps-30e.bin"));
       break;
 
     default: