Update b3PluginManager.cpp

pre/post tick were wrong order in initializer list
This commit is contained in:
erwincoumans
2017-09-24 22:39:20 -07:00
committed by GitHub
parent 83805da531
commit 27674e5289

View File

@@ -48,8 +48,8 @@ struct b3Plugin
m_initFunc(0),
m_exitFunc(0),
m_executeCommandFunc(0),
m_postTickFunc(0),
m_preTickFunc(0),
m_postTickFunc(0),
m_userPointer(0)
{
}