Merge pull request #1020 from ggrtk/pal-bios-path

HostInterface: Fix PAL BIOS path not being read from settings
This commit is contained in:
Connor McLaughlin
2020-10-30 11:37:41 +10:00
committed by GitHub

View File

@ -219,7 +219,7 @@ std::optional<std::vector<u8>> HostInterface::GetBIOSImage(ConsoleRegion region)
break;
case ConsoleRegion::PAL:
bios_name = GetStringSettingValue("BIOS", "PAL", "");
bios_name = GetStringSettingValue("BIOS", "PathPAL", "");
break;
case ConsoleRegion::NTSC_U: