adjusted a workaround for names starting with digits that interfered with some numerical expressions written without spaces

openmw-37
Marc Zinnschlag 9 years ago
parent ae54f34f25
commit 435e52306a

@ -175,7 +175,7 @@ namespace Compiler
{ {
value += c; value += c;
} }
else if (isStringCharacter (c)) else if (c!='-' && isStringCharacter (c))
{ {
error = true; error = true;
value += c; value += c;

Loading…
Cancel
Save