virtualpads - prevent crash on Turbo and HyperNyma cores, just empty for now, will support these cores later

This commit is contained in:
adelikat 2020-06-13 18:17:05 -05:00
parent f2b461bed1
commit 3610ca2b4c
1 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,11 @@ namespace BizHawk.Client.EmuHawk
{
public IEnumerable<PadSchema> GetPadSchemas(IEmulator core)
{
if (!(core is PCEngine))
{
return Enumerable.Empty<PadSchema>();
}
var ss = ((PCEngine)core).GetSyncSettings();
var padSchemas = new[]