mirror of https://github.com/zeldaret/tmc.git
Fix nonmatching detection
This commit is contained in:
parent
5215af9165
commit
5556476425
|
@ -59,7 +59,7 @@ def GetNonMatchingSize(path):
|
||||||
|
|
||||||
for asmLine in asmLines:
|
for asmLine in asmLines:
|
||||||
if len(re.findall(NON_ASM_PATTERN, asmLine, re.DOTALL)) == 0:
|
if len(re.findall(NON_ASM_PATTERN, asmLine, re.DOTALL)) == 0:
|
||||||
size += 4
|
size += 2
|
||||||
|
|
||||||
return size
|
return size
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue