PCFX - multi-disc support

This commit is contained in:
adelikat 2017-07-14 19:46:05 -05:00
parent b67c104de7
commit af653725bb
2 changed files with 12 additions and 1 deletions

View File

@ -719,6 +719,16 @@ namespace BizHawk.Client.Common
nextEmulator = new Saturnus(nextComm, saturnDiscs, Deterministic,
(Saturnus.Settings)GetCoreSettings<Saturnus>(), (Saturnus.SyncSettings)GetCoreSyncSettings<Saturnus>());
break;
case "PCFX":
var pcfxDiscs = DiscsFromXml(xmlGame, "PCFX", DiscType.PCFX);
if (!pcfxDiscs.Any())
{
return false;
}
nextEmulator = new Tst(nextComm, pcfxDiscs,
(Tst.Settings)GetCoreSettings<Tst>(), (Tst.SyncSettings)GetCoreSyncSettings<Tst>());
break;
default:
return false;
}

View File

@ -142,7 +142,8 @@
"AppleII",
"PSX",
"C64",
"SAT"});
"SAT",
"PCFX"});
this.SystemDropDown.Location = new System.Drawing.Point(425, 75);
this.SystemDropDown.Name = "SystemDropDown";
this.SystemDropDown.Size = new System.Drawing.Size(69, 21);