2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-07 07:25:52 +00:00

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

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()