Fix the two unsigned/signed comparison warnings.

Now just for the real error in in_win.c: key_dest.
This commit is contained in:
Bill Currie 2013-01-24 10:34:49 +09:00
parent d14da7f34a
commit 23bd3d99f8

View file

@ -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;