mirror of
https://github.com/encounter/decomp-permuter.git
synced 2026-07-10 03:18:46 -07:00
Don't crash on negative numbers
This commit is contained in:
+2
-2
@@ -24,8 +24,8 @@ ign_branch_targets = True
|
||||
skip_bl_delay_slots = False
|
||||
|
||||
skip_lines = 1
|
||||
re_int = re.compile(r"[0-9]+")
|
||||
re_int_full = re.compile(r"\b[0-9]+\b")
|
||||
re_int = re.compile(r"-?[0-9]+")
|
||||
re_int_full = re.compile(r"\b-?[0-9]+\b")
|
||||
|
||||
|
||||
@dataclass
|
||||
|
||||
Reference in New Issue
Block a user