mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 20:53:50 +00:00
adjusted a workaround for names starting with digits that interfered with some numerical expressions written without spaces
This commit is contained in:
parent
ae54f34f25
commit
435e52306a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue