You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Error when building soh.otr file...", file=os.sys.stderr)
49
+
print("Aborting...", file=os.sys.stderr)
50
+
print("\n")
51
+
36
52
defmain():
37
53
parser=argparse.ArgumentParser()
38
54
parser.add_argument("-z", "--zapd", help="Path to ZAPD executable", dest="zapd_exe", type=str)
39
55
parser.add_argument("rom", help="Path to the rom", type=str, nargs="?")
40
56
parser.add_argument("--non-interactive", help="Runs the script non-interactively for use in build scripts.", dest="non_interactive", action="store_true")
41
57
parser.add_argument("-v", "--verbose", help="Display rom's header checksums and their corresponding xml folder", dest="verbose", action="store_true")
42
58
parser.add_argument("--gen-headers", help="Generate source headers to be checked in", dest="gen_headers", action="store_true")
59
+
parser.add_argument("--norom", help="Generate only soh.otr to be bundled to the game", dest="norom", action="store_true")
0 commit comments