summaryrefslogtreecommitdiff
path: root/first_diff.py
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2024-09-04 20:49:16 +0200
committerGitHub <noreply@github.com>2024-09-05 03:49:16 +0900
commite833011ccd0a594ec16cdee8c94f21c3b8cc32d0 (patch)
tree17a1604d58890bb03a8cbcbb1233f7b744f5742d /first_diff.py
parent907e440f3add31a315475f878ced0c6b9d453708 (diff)
Cleanup: Pass all paths to tools rather than tools constructing them (#2017)
* Pass all paths to tools rather than tools constructing them * fix: make --baserom-segments required * sync with mm reviews * --version everywhere
Diffstat (limited to 'first_diff.py')
-rwxr-xr-xfirst_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/first_diff.py b/first_diff.py
index 5c16b7620..65dcf1b78 100755
--- a/first_diff.py
+++ b/first_diff.py
@@ -30,7 +30,7 @@ def firstDiffMain():
parser = argparse.ArgumentParser(description="Find the first difference(s) between the built ROM and the base ROM.")
parser.add_argument("-c", "--count", type=int, default=5, help="find up to this many instruction difference(s)")
- parser.add_argument("-v", "--oot-version", help="Which version should be processed", default="gc-eu-mq-dbg")
+ parser.add_argument("-v", "--version", dest="oot_version", help="Which version should be processed", default="gc-eu-mq-dbg")
parser.add_argument("-a", "--add-colons", action='store_true', help="Add colon between bytes" )
args = parser.parse_args()