mirror of
https://github.com/open-goal/jak-project
synced 2026-08-09 02:49:19 -04:00
decomp: Decompile wind (#480)
* decomp: Decompile `wind` * include `<limits>`
This commit is contained in:
@@ -5,7 +5,7 @@ import argparse
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--skip", type=int)
|
||||
parser.add_argument("--file")
|
||||
parser.add_argument("--list", action="store_true")
|
||||
parser.add_argument("--list", type=int)
|
||||
args = parser.parse_args()
|
||||
|
||||
skip_count = 0
|
||||
@@ -41,7 +41,7 @@ else:
|
||||
if skip_count <= 0 and len(lines) <= 7:
|
||||
if args.list:
|
||||
list_of_eligible.append(file[0])
|
||||
if len(list_of_eligible) >= 10:
|
||||
if len(list_of_eligible) >= args.list:
|
||||
break
|
||||
else:
|
||||
update_file(file)
|
||||
|
||||
Reference in New Issue
Block a user