diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-28 08:14:20 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-28 08:14:20 -0400 |
commit | 60f685b7b544b94ae1e6212b939cdae5ac12e725 (patch) | |
tree | 1fd3d11972cd2887a7927611a0da763821645767 /src/main.cpp | |
parent | 4391f9289b7368765b39c9654d6b0bdf2db8f36b (diff) |
added dropping from platforms
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0ba715f..9e029cf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -173,7 +173,7 @@ void render(){ d=deltaTime; debugDiv=0; } - ui::putText(player->loc.x-SCREEN_WIDTH/2,SCREEN_HEIGHT-ui::fontSize,"FPS: %d\nD: %d\nRes: %ux%u",fps,d,SCREEN_WIDTH,SCREEN_HEIGHT); + ui::putText(player->loc.x-SCREEN_WIDTH/2,SCREEN_HEIGHT-ui::fontSize,"FPS: %d\nD: %d G:%d\nRes: %ux%u",fps,d,player->ground,SCREEN_WIDTH,SCREEN_HEIGHT); } ui::draw(); // Draw any UI elements if they need to be |