aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-15 07:40:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-15 07:40:52 -0400
commit8f385ec7ac5a78bc3bf70170f4ab39ebcac8e32a (patch)
tree0ef69ad65035e35467ad56d7a1973abfc44894b9 /main.cpp
parent076c984c438bea2b34f8dd3a62bb31ebd2eb5282 (diff)
world saving / new game script stuff
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 9c0ba2f..52841c6 100644
--- a/main.cpp
+++ b/main.cpp
@@ -33,7 +33,7 @@ constexpr const char *GAME_NAME = "Independent Study v0.8 alpha - NOW WITH decen
SDL_Window *window = NULL;
// main loop runs based on this variable's value
-bool gameRunning = false;
+bool gameRunning = true;
// world objects for the current world and the two that are adjacent
World *currentWorld = NULL,
@@ -325,7 +325,6 @@ int main(int argc, char *argv[])
arena->setBGM("assets/music/embark.wav");
// the main loop, in all of its gloriousness..
- gameRunning = true;
std::thread([&]{
while (gameRunning) {
mainLoop();