summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'play.js')
-rw-r--r--play.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/play.js b/play.js
index 0083dfd..c76d8c6 100644
--- a/play.js
+++ b/play.js
@@ -987,8 +987,8 @@ function layout_combat_marker() {
function layout_turn_marker() {
if (view.turn > 0) {
let t = view.turn - 1
- let row = (t / 3) | 0
- let col = (t % 3)
+ let row = (t / 4) | 0
+ let col = (t % 4)
let x = 2267 + col * 45
let y = 79 + row * 52
ui.turn.style.left = x - 16 + "px"