mirror of https://github.com/snes9xgit/snes9x.git
Fix typo.
This commit is contained in:
parent
8c47efb89a
commit
574f3b1780
4
ppu.cpp
4
ppu.cpp
|
@ -1520,8 +1520,8 @@ void S9xSetCPU (uint8 Byte, uint16 Address)
|
|||
// then, when to call S9xOpcode_NMI()?
|
||||
CPU.NMIPending = TRUE;
|
||||
Timings.NMITriggerPos = CPU.Cycles + 6 + 6;
|
||||
if (Timings.NMITriggerPOS >= Timings.H_Max)
|
||||
Timings.NMITriggerPOS -= Timings.H_Max;
|
||||
if (Timings.NMITriggerPos >= Timings.H_Max)
|
||||
Timings.NMITriggerPos -= Timings.H_Max;
|
||||
|
||||
#ifdef DEBUGGER
|
||||
if (Settings.TraceHCEvent)
|
||||
|
|
Loading…
Reference in New Issue