Setting VSync in N64 Core.

This commit is contained in:
null_ptr 2014-01-20 09:56:52 +00:00
parent d1bc64d948
commit a65cc25b24
1 changed files with 13 additions and 0 deletions

View File

@ -441,6 +441,19 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
_display_type = DisplayType.NTSC;
break;
}
switch (DisplayType)
{
case DisplayType.NTSC:
comm.VsyncNum = 60000;
comm.VsyncDen = 1001;
break;
case DisplayType.PAL:
case DisplayType.DENDY:
default:
comm.VsyncNum = 50;
comm.VsyncDen = 1;
break;
}
api = new mupen64plusApi(this, rom, this.SyncSettings.GetVPS(game), SaveType);
api.SetM64PInputCallback(new mupen64plusApi.InputCallback(setControllers));