diff options
-rw-r--r-- | main.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -146,7 +146,7 @@ int main(int argc, char *argv[]) worldShade = 50 * sin((game::time::getTickCount() + (DAY_CYCLE / 2)) / (DAY_CYCLE / PI)); // update fades - ui::fadeUpdate(); + //ui::fadeUpdate(); // increment game ticker game::time::tick(); @@ -169,6 +169,11 @@ int main(int argc, char *argv[]) std::this_thread::sleep_for(1s); }); + GameThread gtFade ([&] { + ui::fadeUpdate(); + std::this_thread::sleep_for(20ms); + }); + // the render loop, renders const bool &run = game::engine.shouldRun; while (run) { |