Add missing arg to BlenderConnection construction

This commit is contained in:
Jack Andersen 2016-03-28 16:28:43 -10:00
parent c06cc88441
commit aef919a665
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ public:
BlenderConnection& getBlenderConnection()
{
if (!m_conn)
m_conn.emplace();
m_conn.emplace(hecl::VerbosityLevel);
return *m_conn;
}
void shutdown()