aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-20 10:49:11 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-20 10:49:11 -0500
commitd543982669364f66fc797f78aa2d604db4bc4325 (patch)
tree941a167c03b9b08d9dd6a16f126a2572c5f79d2a /main.cpp
parent4d8f9974156068e4595bf219cacfd9fcd2fd7174 (diff)
fade fix (kinda)
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 30e19f9..dd84788 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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) {