mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 20:45:34 +00:00
adjusted a workaround for names starting with digits that interfered with some numerical expressions written without spaces
(cherry picked from commit 435e52306a
)
This commit is contained in:
parent
c5235ea794
commit
4677560859
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ namespace Compiler
|
|||
{
|
||||
value += c;
|
||||
}
|
||||
else if (isStringCharacter (c))
|
||||
else if (c!='-' && isStringCharacter (c))
|
||||
{
|
||||
error = true;
|
||||
value += c;
|
||||
|
|
Loading…
Reference in a new issue