mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-27 16:39:09 +00:00
(svn r2727) Fix last commit, don't ask
This commit is contained in:
4
win32.c
4
win32.c
@@ -44,9 +44,9 @@ static bool cursor_visible = true;
|
|||||||
|
|
||||||
bool MyShowCursor(bool show)
|
bool MyShowCursor(bool show)
|
||||||
{
|
{
|
||||||
if (_wnd.cursor_visible == show) return show;
|
if (cursor_visible == show) return show;
|
||||||
|
|
||||||
_wnd.cursor_visible = show;
|
cursor_visible = show;
|
||||||
ShowCursor(show);
|
ShowCursor(show);
|
||||||
|
|
||||||
return !show;
|
return !show;
|
||||||
|
Reference in New Issue
Block a user