diff options
author | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-14 21:23:10 -0400 |
---|---|---|
committer | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-14 21:23:10 -0400 |
commit | ae040b6962d84c56808fc6ff484c5f17a531aca8 (patch) | |
tree | de41a25e78d0b50dc92671317e2654d2afa52f13 /src | |
parent | 45e83c53ee36d8999c00ebfc474d7ef3bb103c14 (diff) |
Fixed deltaTime terminal output
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 905e4cd..15075b0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -197,8 +197,6 @@ void logic(){ else if(player.left)player.vel.x=-.00075; else player.vel.x = 0; - std::cout << deltaTime << std::endl; - currentWorld->detect(&player.loc,&player.vel,player.width); gw=currentWorld->getWidth(); if(player.loc.x+player.width>-1+gw){ |