From 8735f4789cfaee1f27b4613be6687166f4a5d1f0 Mon Sep 17 00:00:00 2001 From: slack Date: Sat, 20 Sep 2008 19:43:13 +0200 Subject: [PATCH] Little flaw in DAA, but I think it's not correct yet. --- gbcore.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gbcore.cc b/gbcore.cc index 7e9d48d..78c2e64 100644 --- a/gbcore.cc +++ b/gbcore.cc @@ -351,7 +351,7 @@ GameBoy::run_status GameBoy::run_cycle() reset_flag(CARRY_FLAG); } - if (regs.A & 0x0F > 9 || check_flag(HALF_CARRY_FLAG)) { + if ((regs.A & 0x0F) > 9 || check_flag(HALF_CARRY_FLAG)) { corr_factor |= 0x06; } -- 2.34.1