From 64e458558278a4673473c369378115f207458298 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 11 Feb 2017 20:17:05 -0600 Subject: [PATCH] oops, fix copy/paste error from the other day which broke gpgx in 32bits mode --- BizHawk.Client.Common/RomLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index ed62776ed3..23569d593f 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -828,7 +828,7 @@ namespace BizHawk.Client.Common //core = CoreInventory.Instance["GEN", "Genplus-gx"]; if (Environment.Is64BitProcess) core = CoreInventory.Instance["GEN", "Genplus-gx64"]; - else core = CoreInventory.Instance["GEN", "Genplus-gx64"]; + else core = CoreInventory.Instance["GEN", "Genplus-gx"]; break; }