From d0580929831a88398887642ac12b0d51722a004e Mon Sep 17 00:00:00 2001 From: Jean-Yves Lamoureux Date: Thu, 18 Apr 2013 18:33:08 +0000 Subject: [PATCH] * Physics --- test/physics/lolphysics.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/physics/lolphysics.h b/test/physics/lolphysics.h index d75fe6a4..a2cb5cf7 100644 --- a/test/physics/lolphysics.h +++ b/test/physics/lolphysics.h @@ -115,6 +115,7 @@ public: //the "+1" is to have at least one Timestep and to ensure float to int .5f conversion. int steps = (int)(seconds / m_timestep) + 1; m_dynamics_world->stepSimulation(seconds, steps, m_timestep); + printf("STEP\n"); } }