aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-04-25 08:48:39 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-04-25 08:48:39 -0400
commitb7e31e8b7ce8f470a269c6bc17e6525c6f3a4d50 (patch)
tree476b444a70b39d9f84b6a39c926c110e2efaf473 /src/ui.cpp
parent2473bc452959f1c84b03c4b9202d601b3325143d (diff)
fixed bugs
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index 8d3762d..e30993a 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -1059,8 +1059,20 @@ EXIT:
currentWorld = ((Arena *)currentWorld)->exitArena(player);
if (tmp != currentWorld)
toggleBlackFast();
- } else if ((tmp = currentWorld->goInsideStructure(player)) != currentWorld)
- currentWorld = tmp;
+ } else {
+ auto tmpp = currentWorld->goInsideStructure(player);
+
+ if (tmpp.first != currentWorld) {
+ ui::toggleBlackFast();
+ ui::waitForCover();
+
+ currentWorld = tmpp.first;
+ if (tmpp.second)
+ player->loc.x = tmpp.second;
+
+ ui::toggleBlackFast();
+ }
+ }
break;
case SDLK_LSHIFT:
if (debug) {