1
0
Fork 0

(svn r2727) Fix last commit, don't ask

release/0.4.5
tron 2005-07-27 19:26:53 +00:00
parent c43653b565
commit 6c52a8629d
1 changed files with 2 additions and 2 deletions

View File

@ -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;