pcfx - hide ports based on multitap

This commit is contained in:
nattthebear 2020-06-13 16:50:01 -04:00
parent 13a5e9d102
commit d6cc6abfec
1 changed files with 17 additions and 0 deletions

View File

@ -59,5 +59,22 @@ namespace BizHawk.Emulation.Cores.Consoles.NEC.PCFX
["SELECT"] = "Select",
["RUN"] = "Run"
};
protected override HashSet<string> ComputeHiddenPorts()
{
// NB: Since we're hiding these settings up above, this will always trim us down to 2 ports
var devCount = 8;
if (SettingsQuery("pcfx.input.port1.multitap") != "1")
devCount -= 3;
if (SettingsQuery("pcfx.input.port2.multitap") != "1")
devCount -= 3;
var ret = new HashSet<string>();
for (var i = 1; i <= 8; i++)
{
if (i > devCount)
ret.Add($"port{i}");
}
return ret;
}
}
}