mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-28 22:51:05 -04:00
adjusted a workaround for names starting with digits that interfered with some numerical expressions written without spaces
(cherry picked from commit 435e52306a0b1a7ef4cf7059bbc388b3262d2631)
This commit is contained in:
parent
c5235ea794
commit
4677560859
@ -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…
x
Reference in New Issue
Block a user