changeset 2209:c387ffcf7c8b draft

(svn r2727) Fix last commit, don't ask
author tron <tron@openttd.org>
date Wed, 27 Jul 2005 19:26:53 +0000
parents e4d18bc42152
children 0571dfdce016
files win32.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/win32.c
+++ b/win32.c
@@ -44,9 +44,9 @@
 
 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;