aboutsummaryrefslogtreecommitdiff
path: root/examples/physics_forces.c
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2016-06-14 20:23:46 +0200
committervictorfisac <victorfisac@gmail.com>2016-06-14 20:23:46 +0200
commit54537e8f0b57df2f3f15d8e46309672f46e4775a (patch)
tree4f8d48f305a0bfd8cd15e883d71d2e407acb4d2f /examples/physics_forces.c
parentc9c1263e6fda9926f29ec8417ca48a518dfc97e1 (diff)
downloadraylib-54537e8f0b57df2f3f15d8e46309672f46e4775a.tar.gz
raylib-54537e8f0b57df2f3f15d8e46309672f46e4775a.zip
Fixed bug in delta time calculation...
and added PHYSAC_NO_THREADS define. Improved physac example drawing frames per second in screen.
Diffstat (limited to 'examples/physics_forces.c')
-rw-r--r--examples/physics_forces.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/physics_forces.c b/examples/physics_forces.c
index 28566753..87510552 100644
--- a/examples/physics_forces.c
+++ b/examples/physics_forces.c
@@ -164,7 +164,9 @@ int main()
// Draw help messages
DrawText("Use LEFT MOUSE BUTTON to apply a force", screenWidth/2 - MeasureText("Use LEFT MOUSE BUTTON to apply a force", 20)/2, screenHeight*0.075f, 20, LIGHTGRAY);
- DrawText("Use R to reset objects position", screenWidth/2 - MeasureText("Use R to reset objects position", 20)/2, screenHeight*0.875f, 20, GRAY);
+ DrawText("Use R to reset objects position", screenWidth/2 - MeasureText("Use R to reset objects position", 20)/2, screenHeight*0.875f, 20, GRAY);
+
+ DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------