mirror of
https://github.com/n64decomp/mk64
synced 2026-07-09 13:17:15 -04:00
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:
+20
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user