From c0b5a9d4a829afdee87b9ef5fc508dfff77eee4e Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 6 Mar 2011 20:59:46 +0000 Subject: [PATCH] fix a warning about an unsigned array on ios git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10903 d7cf8633-e32d-0410-b094-e92efae38249 --- vid_sdl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vid_sdl.c b/vid_sdl.c index 07a51dc1..73448881 100644 --- a/vid_sdl.c +++ b/vid_sdl.c @@ -830,6 +830,7 @@ static void sdl_newmap(void) } #endif +#ifndef __IPHONEOS__ static keynum_t buttonremap[18] = { K_MOUSE1, @@ -851,6 +852,7 @@ static keynum_t buttonremap[18] = K_MOUSE15, K_MOUSE16, }; +#endif #if SETVIDEOMODE // SDL 1.2 -- 2.39.2