OR now calls the correct function instead of duplicating XOR. Closes #243.

This commit is contained in:
n1474335 2018-02-14 10:34:08 +00:00
parent ab55b91da1
commit 50f2819699
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ OpModules.Default = {
"Bit shift right": BitwiseOp.runBitShiftRight,
"XOR": BitwiseOp.runXor,
"XOR Brute Force": BitwiseOp.runXorBrute,
"OR": BitwiseOp.runXor,
"OR": BitwiseOp.runOr,
"NOT": BitwiseOp.runNot,
"AND": BitwiseOp.runAnd,
"ADD": BitwiseOp.runAdd,