1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

fixed exclusion for certain characters at the start of names

This commit is contained in:
Marc Zinnschlag 2014-12-18 09:55:26 +01:00
parent ed5387fb8c
commit fc1d42a7d2

View File

@ -314,7 +314,7 @@ namespace Compiler
bool Scanner::scanName (char c, std::string& name)
{
bool first = false;
bool first = true;
bool error = false;
name.clear();