From: Andy Belle-Isle Date: Tue, 15 Sep 2015 01:23:10 +0000 (-0400) Subject: Fixed deltaTime terminal output X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=ae040b6962d84c56808fc6ff484c5f17a531aca8;p=clyne%2Fgamedev.git Fixed deltaTime terminal output --- 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){