fix another compile issue

This commit is contained in:
erwincoumans
2015-05-02 13:09:29 -07:00
parent 1215d4b01c
commit 37c788841a

View File

@@ -28,7 +28,8 @@ int main(int argc, char* argv[])
DummyGUIHelper noGfx;
CommonExampleInterface* example = BasicExampleCreateFunc(CommonExampleOptions(&noGfx));
CommonExampleOptions options(&noGfx);
CommonExampleInterface* example = BasicExampleCreateFunc(options);
example->initPhysics();
example->stepSimulation(1.f/60.f);