mirror of https://github.com/zeldaret/tmc.git
fix calcrom to accept strings.s
This commit is contained in:
parent
001bf63c61
commit
0cb4a64f67
|
@ -58,7 +58,13 @@ while (my $line = <$file>)
|
|||
}
|
||||
elsif ($dir eq 'data')
|
||||
{
|
||||
$data += $size;
|
||||
if ($basename =~ /(strings)/)
|
||||
{
|
||||
$srcdata += $size;
|
||||
}
|
||||
else {
|
||||
$data += $size;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue