EU 1.0 OK (#265)

* EU 1.0 ok

* EU 1.1 ok

Co-authored-by: AloXado320 <david.albujar.s.30@gmail.com>
This commit is contained in:
MegaMech
2023-10-19 23:37:21 -06:00
committed by GitHub
parent 291c1d40d6
commit 76dc587a34
46 changed files with 4209 additions and 115 deletions
+20 -1
View File
@@ -17,6 +17,22 @@ versionGroup.add_argument(
const="us",
dest="version",
)
versionGroup.add_argument(
"-e",
"--eu10",
help="use European (1.0) version",
action="store_const",
const="eu-1.0",
dest="version",
)
versionGroup.add_argument(
"-E",
"--eu11",
help="use European (1.1) version",
action="store_const",
const="eu-final",
dest="version",
)
parser.add_argument(
"-m", "--make", help="run make before finding difference(s)", action="store_true"
)
@@ -252,7 +268,10 @@ if diffs == 0:
exit()
definite_shift = diffs > shift_cap
if not definite_shift:
print(str(diffs) + " differing word(s).")
if (diffs > 1):
print(str(diffs) + " differing words.")
else:
print(str(diffs) + " differing word.")
if diffs > 100:
if len(found_instr_diff) > 0: