win32.c
changeset 2209 53b1df15a9fe
parent 2208 ed38ba85b7e1
child 2210 58a293892a66
--- a/win32.c	Wed Jul 27 19:25:50 2005 +0000
+++ b/win32.c	Wed Jul 27 19:26:53 2005 +0000
@@ -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;