summaryrefslogtreecommitdiff
path: root/sym_info.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 /sym_info.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 'sym_info.py')
-rwxr-xr-xsym_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sym_info.py b/sym_info.py
index 1ef09b2fc..feeb95da7 100755
--- a/sym_info.py
+++ b/sym_info.py
@@ -9,7 +9,7 @@ import mapfile_parser
def symInfoMain():
parser = argparse.ArgumentParser(description="Display various information about a symbol or address.")
parser.add_argument("symname", help="symbol name or VROM/VRAM address to lookup")
- 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("-e", "--expected", dest="use_expected", action="store_true", help="use the map file in expected/build/ instead of build/")
args = parser.parse_args()