diff -r ffa905c96dd8 -r 1fbc0d5a82d0 hedgewars/uWorld.pas --- a/hedgewars/uWorld.pas Sun Nov 12 17:25:17 2017 +0100 +++ b/hedgewars/uWorld.pas Sun Nov 12 17:41:01 2017 +0100 @@ -2014,10 +2014,10 @@ procedure updateCursorVisibility; begin - if isPaused or isAFK or (GameState = gsConfirm) then - uCursor.setSystemCursor(true) + if isPaused or isAFK then + SDL_ShowCursor(1) else - uCursor.setSystemCursor(false); + SDL_ShowCursor(ord(GameState = gsConfirm)) end; procedure SetUtilityWidgetState(ammoType: TAmmoType);