File diff r2208:adb18646c021 → r2209:e40a090476da
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;