From 8f385ec7ac5a78bc3bf70170f4ab39ebcac8e32a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 15 Jun 2016 07:40:52 -0400 Subject: world saving / new game script stuff --- main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'main.cpp') 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(); -- cgit v1.2.3