hedgewars/uWorld.pas
changeset 10510 9329dab04490
parent 10507 ed5df9cd251f
child 10523 00ac079fa51f
equal deleted inserted replaced
10509:d62d3c706947 10510:9329dab04490
  2039     else UndampenAudio();
  2039     else UndampenAudio();
  2040     end;
  2040     end;
  2041 end;
  2041 end;
  2042 
  2042 
  2043 procedure updateCursorVisibility;
  2043 procedure updateCursorVisibility;
  2044 begin       
  2044 begin
  2045     if isPaused or isAFK then
  2045     if isPaused or isAFK then
  2046         SDL_ShowCursor(1)
  2046         SDL_ShowCursor(1)
  2047     else
  2047     else
  2048         SDL_ShowCursor(ord(GameState = gsConfirm))
  2048         SDL_ShowCursor(ord(GameState = gsConfirm))
  2049 end;
  2049 end;