aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 4cf0475..538ab16 100644
--- a/main.cpp
+++ b/main.cpp
@@ -295,8 +295,10 @@ int main(int argc, char *argv[]){
}
}).detach();
- while (gameRunning)
+ while (gameRunning) {
render();
+ ui::handleEvents();
+ }
// put away the brice for later
game::briceSave();
@@ -327,7 +329,7 @@ void mainLoop(void){
return;
} else {
// handle keypresses - currentWorld could change here
- ui::handleEvents();
+ //ui::handleEvents();
if (game::time::tickHasPassed())
logic();