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:
|
case DiscType.SonyPSP:
|
||||||
game.System = "PSP";
|
game.System = "PSP";
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
case DiscType.SonyPSX:
|
case DiscType.SonyPSX:
|
||||||
game.System = "PSX";
|
game.System = "PSX";
|
||||||
break;
|
break;
|
||||||
|
@ -283,9 +284,6 @@ namespace BizHawk.Client.Common
|
||||||
case DiscType.TurboCD:
|
case DiscType.TurboCD:
|
||||||
case DiscType.UnknownCDFS:
|
case DiscType.UnknownCDFS:
|
||||||
case DiscType.UnknownFormat:
|
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";
|
game.System = "PCECD";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue