1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 08:49:40 +00:00

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

This commit is contained in:
Marc Zinnschlag 2015-09-26 11:34:46 +02:00
parent ae54f34f25
commit 435e52306a

View file

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