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
commit 70fa41431b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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: