From 6074bd94e9a07f07dedea5929ba294f96f40abea Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 10 Jul 2017 20:54:41 -0500 Subject: [PATCH] route .32x files to pico drive --- BizHawk.Client.Common/RomLoader.cs | 3 +++ BizHawk.Emulation.Common/Database/Database.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 7458b33953..5d20da76cf 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -908,6 +908,9 @@ namespace BizHawk.Client.Common core = CoreInventory.Instance["GEN", "Genplus-gx"]; } + break; + case "32X": + core = CoreInventory.Instance["GEN", "PicoDrive"]; break; } diff --git a/BizHawk.Emulation.Common/Database/Database.cs b/BizHawk.Emulation.Common/Database/Database.cs index 4a557590cf..df1a2562c7 100644 --- a/BizHawk.Emulation.Common/Database/Database.cs +++ b/BizHawk.Emulation.Common/Database/Database.cs @@ -349,7 +349,7 @@ namespace BizHawk.Emulation.Common game.System = "UZE"; break; case ".32X": - game.System = "GEN"; + game.System = "32X"; game.AddOption("32X", "true"); break; }