diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-20 10:49:11 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-20 10:49:11 -0500 |
commit | d543982669364f66fc797f78aa2d604db4bc4325 (patch) | |
tree | 941a167c03b9b08d9dd6a16f126a2572c5f79d2a /main.cpp | |
parent | 4d8f9974156068e4595bf219cacfd9fcd2fd7174 (diff) |
fade fix (kinda)
Diffstat (limited to 'main.cpp')
-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) { |