From 1eb56b522ecd9252242470d388c0ad7272f3f26d Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 18 Dec 2010 20:06:14 +0000 Subject: [PATCH] fix a warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10672 d7cf8633-e32d-0410-b094-e92efae38249 --- vid_wgl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vid_wgl.c b/vid_wgl.c index 81e45c3b..49a55fe6 100644 --- a/vid_wgl.c +++ b/vid_wgl.c @@ -2198,7 +2198,7 @@ int IN_JoystickGetAxisNum(int ControlListType) int i; for (i = 0; i < JOY_MAX_AXES; i++) - if (dwAxisMap[i] == ControlListType) + if (dwAxisMap[i] == (DWORD) ControlListType) return i; return -1; } -- 2.39.2