From: slack Date: Sat, 20 Sep 2008 17:43:13 +0000 (+0200) Subject: Little flaw in DAA, but I think it's not correct yet. X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=8735f4789cfaee1f27b4613be6687166f4a5d1f0;p=wenboi.git Little flaw in DAA, but I think it's not correct yet. --- 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; }