From df1c5c0f45d4fa80adba4eb5848500fa3dbb3d8a Mon Sep 17 00:00:00 2001
From: Albert Liu <45282415+ggrtk@users.noreply.github.com>
Date: Thu, 29 Oct 2020 14:26:07 -0700
Subject: [PATCH] HostInterface: Fix PAL BIOS path not being read from settings

---
 src/core/host_interface.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp
index b645df282..c7ad724bb 100644
--- a/src/core/host_interface.cpp
+++ b/src/core/host_interface.cpp
@@ -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: