diff options
author | Darkvater <Darkvater@openttd.org> | 2006-03-24 17:40:55 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-03-24 17:40:55 +0000 |
commit | bdfe20ae739e5cacd5d8ee90b48d6467841293bc (patch) | |
tree | 89ed1cde47cb49544097a95ee95db0abd1fc69af /video | |
parent | 549f9b0d2f94d2fb03f0679048810c8034b5f321 (diff) | |
download | openttd-bdfe20ae739e5cacd5d8ee90b48d6467841293bc.tar.xz |
(svn r4091) - Fix r4075. Do not "enter" please.
Diffstat (limited to 'video')
-rw-r--r-- | video/win32_v.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/video/win32_v.c b/video/win32_v.c index aff4f2526..21b9d1e72 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; |