From 23bd3d99f84e43fd94646bae89386a9c6b619478 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 24 Jan 2013 10:34:49 +0900 Subject: [PATCH] Fix the two unsigned/signed comparison warnings. Now just for the real error in in_win.c: key_dest. --- libs/video/targets/in_win.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/video/targets/in_win.c b/libs/video/targets/in_win.c index 2a14d7179..377321fbf 100644 --- a/libs/video/targets/in_win.c +++ b/libs/video/targets/in_win.c @@ -385,7 +385,7 @@ IN_LL_Shutdown (void) static void IN_MouseEvent (unsigned mstate) { - int i; + unsigned i; if (in_mouse_avail && !dinput) { // perform button actions @@ -424,7 +424,7 @@ IN_LL_ProcessEvents (void) MSG msg; int mx, my; // HDC hdc; - int i; + unsigned i; DIDEVICEOBJECTDATA od; DWORD dwElements; HRESULT hr;