This commit is contained in:
alyosha-tas 2021-05-17 18:29:00 -04:00
parent 4f24c6ac70
commit 94a851ef9e
2 changed files with 4 additions and 2 deletions

View File

@ -71,7 +71,9 @@ namespace BizHawk.Client.Common
["ZXSpectrum_PAL"] = 50.080128205,
["AmstradCPC_PAL"] = 50.08012820512821,
["UZE"] = 60.016319939602,
["VEC"] = 50
["VEC"] = 50,
["O2"] = 60,
["O2_PAL"] = 50
};
public static double GetFrameRate(string systemId, bool pal)

View File

@ -121,7 +121,7 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk
HardReset();
}
public DisplayType Region => DisplayType.NTSC;
public DisplayType Region => is_pal ? DisplayType.PAL : DisplayType.NTSC;
private readonly O2HawkControllerDeck _controllerDeck;