diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-10 15:40:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-10 15:40:52 -0400 |
commit | 444e256efe52274caf464e941cd76abc9ccf1d61 (patch) | |
tree | 8490afc2821b40c063680cd2c2b100074615a963 /main.cpp | |
parent | 7227865bc1ffb16072a14effbfd8633635fc8ff5 (diff) |
bug/memory fixes
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -321,7 +321,6 @@ static float debugY=0; void mainLoop(void){ static unsigned int debugDiv=0; // A divisor used to update the debug menu if it's open - World *prev; game::time::mainLoopHandler(); @@ -329,14 +328,8 @@ void mainLoop(void){ return; } else { // handle keypresses - currentWorld could change here - prev = currentWorld; ui::handleEvents(); - if(prev != currentWorld){ - currentWorld->bgmPlay(prev); - ui::dialogBoxExists = false; - } - if (game::time::tickHasPassed()) logic(); |