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
This commit is contained in:
parent
714f4a9687
commit
5e07ab3ec3
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue