- [FIX] Corregit un mini-error en DDA

This commit is contained in:
Raimon @ quifisraimon
2026-07-21 13:52:18 +02:00
parent 35afea447b
commit 3f41655778
+1 -1
View File
@@ -392,7 +392,7 @@ namespace sm83
} }
KEEP_FLAGS(fN); KEEP_FLAGS(fN);
if (t==0) SET_FLAGS(fZ); if (t==0) SET_FLAGS(fZ);
if (corr & 0x60 != 0) SET_FLAGS(fC); if (corr & 0x60) SET_FLAGS(fC);
t &= 0xFF; t &= 0xFF;
rA = t; rA = t;
} }