From 74853e619a34f481d141b586a5b2c94fe474b5a0 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Fri, 24 Mar 2006 17:40:55 +0000 Subject: [PATCH] (svn r4091) - Fix r4075. Do not "enter" please. --- video/win32_v.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/video/win32_v.c b/video/win32_v.c index aff4f2526c..21b9d1e724 100644 --- a/video/win32_v.c +++ b/video/win32_v.c @@ -291,13 +291,11 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP return 0; case WM_MOUSEENTER: - printf("enter\n"); _cursor.in_window = true; DrawMouseCursor(); break; case WM_MOUSELEAVE: - printf("enter\n"); UndrawMouseCursor(); _cursor.in_window = false; break;