From 574f3b1780c84593511c9feba1d27fc57015e219 Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Thu, 17 May 2018 16:40:05 -0500 Subject: [PATCH] Fix typo. --- ppu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ppu.cpp b/ppu.cpp index 863630f2..8b168403 100644 --- a/ppu.cpp +++ b/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)