From d9bba8189ade8acef3bb0aa15abf979ad2375c65 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 24 Apr 2010 16:54:55 +0000 Subject: [PATCH] changed SDL conditional in input.h to SDL_MAJOR_VERSION git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@145 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/input.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Quake/input.h b/Quake/input.h index b49e3632..b1b8a2d1 100644 --- a/Quake/input.h +++ b/Quake/input.h @@ -47,11 +47,11 @@ void IN_Activate (); // called when the app becomes inactive void IN_Deactivate (qboolean free_cursor); -#if defined(SDL_ALL_HOTKEYS) -/* for SDL builds: */ +#if defined(SDL_MAJOR_VERSION) +/* for SDL builds only */ void BuildKeyMaps (void); int Key_Map (SDL_KeyboardEvent *event); -#endif /* SDL_ALL_HOTKEYS */ +#endif /* SDL_MAJOR_VERSION */ #endif /* _QUAKE_INPUT_H */