summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/game/states
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/ch/asynk/tankontank/game/states')
-rw-r--r--core/src/ch/asynk/tankontank/game/states/StateRotate.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/ch/asynk/tankontank/game/states/StateRotate.java b/core/src/ch/asynk/tankontank/game/states/StateRotate.java
index f692ed0..431c5a1 100644
--- a/core/src/ch/asynk/tankontank/game/states/StateRotate.java
+++ b/core/src/ch/asynk/tankontank/game/states/StateRotate.java
@@ -44,6 +44,7 @@ public class StateRotate extends StateCommon
unselectHex(from);
map.showFinalPath(to, false);
map.showDirections(to, false);
+ map.showOrientation(to, false, o);
to.set(-1, -1);
from.set(-1, -1);
}
@@ -65,7 +66,8 @@ public class StateRotate extends StateCommon
rotationSet = true;
if (ctrl.cfg.mustValidate) {
- // TODO show overlay
+ map.showDirections(to, false);
+ map.showOrientation(to, true, o);
ctrl.hud.show(true, false, false, true, ctrl.cfg.canCancel);
} else
doRotation(o);