Update Intellivision.IEmulator.cs

This commit is contained in:
alyosha-tas 2016-12-26 10:51:45 -05:00 committed by GitHub
parent aa44cf6f02
commit a01f7c3502
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
_stic.active_display = false;
_stic.Sr1 = false;
_cpu.PendingCycles = (2900 + _cpu.GetPendingCycles());
_cpu.PendingCycles = (3000 + _cpu.GetPendingCycles());
while (_cpu.GetPendingCycles() > 0)
{
@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
}
// vblank phase 2
_cpu.PendingCycles = (891 + _cpu.GetPendingCycles());
_cpu.PendingCycles = (791 + _cpu.GetPendingCycles());
_stic.in_vb_1 = false;
while (_cpu.GetPendingCycles() > 0)