aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-10 15:40:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-10 15:40:52 -0400
commit444e256efe52274caf464e941cd76abc9ccf1d61 (patch)
tree8490afc2821b40c063680cd2c2b100074615a963 /main.cpp
parent7227865bc1ffb16072a14effbfd8633635fc8ff5 (diff)
bug/memory fixes
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/main.cpp b/main.cpp
index 570f12f..14f5166 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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();