From 9565333f487e538a78f14ecfad6305e195682d10 Mon Sep 17 00:00:00 2001 From: iainp5 Date: Mon, 28 Oct 2024 17:53:46 +0000 Subject: fix round marker --- play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play.js b/play.js index 8b5d3d7..49ab1f3 100644 --- a/play.js +++ b/play.js @@ -485,7 +485,7 @@ function layout_turn_marker() { } function layout_round_marker() { - let x = 709 + 24 + (view.turn - 1) * 53 + let x = 709 + 24 + (view.round - 1) * 53 let y = 142 + 24 ui.round.style.left = x - 25 + "px" ui.round.style.top = y - 25 + "px" -- cgit v1.2.3