diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-15 07:40:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-15 07:40:52 -0400 |
commit | 8f385ec7ac5a78bc3bf70170f4ab39ebcac8e32a (patch) | |
tree | 0ef69ad65035e35467ad56d7a1973abfc44894b9 /main.cpp | |
parent | 076c984c438bea2b34f8dd3a62bb31ebd2eb5282 (diff) |
world saving / new game script stuff
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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(); |