mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 09:38:14 -05:00
Update reccmp.py (#236)
Support indented comments for 'TEMPLATE'd functions.
This commit is contained in:
parent
4cc6b9b8ec
commit
d232c82e70
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ def can_resolve_register_differences(original_asm, new_asm):
|
||||||
line = srcfile.readline()
|
line = srcfile.readline()
|
||||||
line_no += 1
|
line_no += 1
|
||||||
# Name comes after // comment
|
# Name comes after // comment
|
||||||
name = line[2:].strip()
|
name = line.strip()[2:].strip()
|
||||||
|
|
||||||
recinfo = syminfo.get_recompiled_address_from_name(name)
|
recinfo = syminfo.get_recompiled_address_from_name(name)
|
||||||
if not recinfo:
|
if not recinfo:
|
||||||
|
|
Loading…
Reference in a new issue