ASE: Explicitly pass "UNNAMED" as default Light name

pull/1745/head
Turo Lamminen 2018-01-27 18:19:17 +02:00
parent f3d702339c
commit 4fd791796c
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ void Parser::Parse()
if (TokenMatch(filePtr,"LIGHTOBJECT",11))
{
m_vLights.push_back(Light());
m_vLights.push_back(Light("UNNAMED"));
ParseLV1ObjectBlock(m_vLights.back());
continue;
}