aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-26 11:50:15 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-26 11:50:15 -0400
commitb61e4e5b140278705c79674c02de6886b2189f71 (patch)
tree2e77fa22db804334efd5a3b8dacf8d8167a387bd /src/ui.cpp
parentf4177a77ceff0e1cffb7e968f3d48497fcd2d45c (diff)
fixing everything that's apparently broken...
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 14df95e..037ba89 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -629,6 +629,11 @@ namespace ui {
while (fadeIntensity < 255);
fadeIntensity = 255;
}
+
+ void waitForUncover(void) {
+ while (fadeIntensity > 0);
+ fadeIntensity = 0;
+ }
void waitForNothing(unsigned int ms) {
unsigned int target = millis() + ms;
@@ -1301,6 +1306,7 @@ EXIT:
wsi.first->bgmPlay(currentWorld);
std::tie(currentWorld, player->loc) = wsi;
toggleBlackFast();
+ waitForUncover();
player->canMove = true;
};