mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
Fix the two unsigned/signed comparison warnings.
Now just for the real error in in_win.c: key_dest.
This commit is contained in:
parent
d14da7f34a
commit
23bd3d99f8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue