From 4a54fd4018adf931fb436acba2399efc6d6d1176 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Mon, 3 Nov 2014 15:26:54 +0100 Subject: use stdint/stdbool --- source/sa1cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/sa1cpu.c') 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)) -- cgit v1.2.3