mirror of https://github.com/stella-emu/stella.git
fix for temporary macro labels ('...$')
This commit is contained in:
parent
4228093638
commit
2efeb6cdb7
|
@ -816,7 +816,11 @@ string CartDebug::loadSymbolFile()
|
|||
if(pos != string::npos)
|
||||
addLabel(label.substr(pos), value);
|
||||
else
|
||||
addLabel(label, value);
|
||||
{
|
||||
pos = label.find_last_of("$");
|
||||
if (pos == string::npos || pos != label.length() - 1)
|
||||
addLabel(label, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue