diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -496,11 +496,11 @@ void mainLoop(void){ /* * Run the logic handler if MSEC_PER_TICK milliseconds have passed. */ + if(prevPrevTime + MSEC_PER_TICK >= currentTime){ logic(); prevPrevTime = currentTime; } - //ui::handleMouse(); /* * Update player and entity coordinates. @@ -519,7 +519,7 @@ void mainLoop(void){ }else if(!(debugDiv%10)){ debugY = player->loc.y; - } + } render(); // Call the render loop |