diff options
Diffstat (limited to 'source/sa1cpu.c')
-rw-r--r-- | source/sa1cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sa1cpu.c b/source/sa1cpu.c index ddabd09..b2b33b7 100644 --- a/source/sa1cpu.c +++ b/source/sa1cpu.c @@ -212,7 +212,7 @@ void S9xSA1MainLoop() SA1.Flags &= ~NMI_FLAG; if (SA1.WaitingForInterrupt) { - SA1.WaitingForInterrupt = FALSE; + SA1.WaitingForInterrupt = false; SA1.PC++; } S9xSA1Opcode_NMI(); @@ -224,7 +224,7 @@ void S9xSA1MainLoop() { if (SA1.WaitingForInterrupt) { - SA1.WaitingForInterrupt = FALSE; + SA1.WaitingForInterrupt = false; SA1.PC++; } if (!SA1CheckFlag(IRQ)) |