Fixed cursor going out of bounds

This commit is contained in:
Simon Cambier 2023-10-07 22:14:18 +02:00
parent cb74bdf740
commit 84a05355d9

View File

@ -79,6 +79,10 @@ function state_game()
moved = true
x += 1
end
x = mid(1, x, size)
y = mid(1, y, size)
if moved then
selected_id = board:xy_idx(x, y)
end
@ -88,10 +92,6 @@ function state_game()
show_clues()
end
if (x < 1) x = size
if (x > size) x = 1
if (y < 1) y = size
if (y > size) y = 1
check_endgame()
end