# HG changeset patch # User tron # Date 2005-07-27 19:26:53 # Node ID e40a090476da6fb3f2daea083d6ca7db585237f0 # Parent adb18646c021e98967d3f345eb036ba7a4399848 (svn r2727) Fix last commit, don't ask diff --git a/win32.c b/win32.c --- a/win32.c +++ b/win32.c @@ -44,9 +44,9 @@ static bool cursor_visible = true; 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); return !show;