diff --git a/hecl/blender/BlenderConnection.cpp b/hecl/blender/BlenderConnection.cpp index 753710e62..56f0aca3b 100644 --- a/hecl/blender/BlenderConnection.cpp +++ b/hecl/blender/BlenderConnection.cpp @@ -348,8 +348,7 @@ bool BlenderConnection::createBlend(const SystemString& path) return false; } HECL::SystemUTF8View pathView(path); - _writeLine(("CREATE \"" + pathView.str() + "\"").c_str()); - //_writeLine(("CREATE \"" + pathView.str() + "\" \"" + m_startupBlend + "\"").c_str()); + _writeLine(("CREATE \"" + pathView.str() + "\" \"" + m_startupBlend + "\"").c_str()); char lineBuf[256]; _readLine(lineBuf, sizeof(lineBuf)); if (!strcmp(lineBuf, "FINISHED"))