From 4fd791796cc6eb2af899ae5c1483d60d1580dd1a Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Sat, 27 Jan 2018 18:19:17 +0200 Subject: [PATCH] ASE: Explicitly pass "UNNAMED" as default Light name --- code/ASEParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ASEParser.cpp b/code/ASEParser.cpp index 166782d77..12023c239 100644 --- a/code/ASEParser.cpp +++ b/code/ASEParser.cpp @@ -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; }