diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-09-04 20:49:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 03:49:16 +0900 |
| commit | e833011ccd0a594ec16cdee8c94f21c3b8cc32d0 (patch) | |
| tree | 17a1604d58890bb03a8cbcbb1233f7b744f5742d /first_diff.py | |
| parent | 907e440f3add31a315475f878ced0c6b9d453708 (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-x | first_diff.py | 2 |
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() |
