Changeset - r2209:e40a090476da
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-07-27 19:26:53
tron@openttd.org
(svn r2727) Fix last commit, don't ask
1 file changed with 2 insertions and 2 deletions:
win32.c
2
2
0 comments (0 inline, 0 general)
win32.c
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)