From 59ab30cb25d24f77825ceaac460f767c433e01fc Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Sat, 27 Jan 2018 18:08:52 +0200 Subject: [PATCH] ASE: Explicitly pass "UNNAMED" as default mesh name --- code/ASEParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ASEParser.cpp b/code/ASEParser.cpp index 7c1197139..166782d77 100644 --- a/code/ASEParser.cpp +++ b/code/ASEParser.cpp @@ -292,7 +292,7 @@ void Parser::Parse() if (TokenMatch(filePtr,"GEOMOBJECT",10)) { - m_vMeshes.push_back(Mesh()); + m_vMeshes.push_back(Mesh("UNNAMED")); ParseLV1ObjectBlock(m_vMeshes.back()); continue; }