From 5e07ab3ec3b8b8de9eae71b489b55d23a3909f55 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 8 Feb 2015 18:31:16 +0000 Subject: [PATCH] for an unknown disc, default to psx instead of pce-cd, since that is far more likely to be what they are attempting to open --- BizHawk.Client.Common/RomLoader.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index d776c086c9..fb98846a85 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -274,6 +274,7 @@ namespace BizHawk.Client.Common case DiscType.SonyPSP: game.System = "PSP"; break; + default: case DiscType.SonyPSX: game.System = "PSX"; break; @@ -283,9 +284,6 @@ namespace BizHawk.Client.Common case DiscType.TurboCD: case DiscType.UnknownCDFS: case DiscType.UnknownFormat: - default: // PCECD was bizhawk's first CD core, - // and during that time, all CDs were blindly sent to it - // so this prevents regressions game.System = "PCECD"; break; }