virtualpads - prevent crash on Turbo and HyperNyma cores, just empty for now, will support these cores later
This commit is contained in:
parent
f2b461bed1
commit
3610ca2b4c
|
@ -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[]
|
||||
|
|
Loading…
Reference in New Issue