diff options
Diffstat (limited to 'lib/alu.c')
-rw-r--r-- | lib/alu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -746,9 +746,9 @@ Uint32 DivisionSigne(Uint32 a, Uint32 b) Uint32 AND(Uint32 a, Uint32 b) { if (Rapide) { - return RANDSigne(a, b); + return RAND(a, b); } else { - return NANDSigne(a, b); + return NAND(a, b); } } |