diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-26 11:50:15 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-26 11:50:15 -0400 |
commit | b61e4e5b140278705c79674c02de6886b2189f71 (patch) | |
tree | 2e77fa22db804334efd5a3b8dacf8d8167a387bd /src/ui.cpp | |
parent | f4177a77ceff0e1cffb7e968f3d48497fcd2d45c (diff) |
fixing everything that's apparently broken...
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; }; |