changed SDL conditional in input.h to SDL_MAJOR_VERSION

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@145 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-04-24 16:54:55 +00:00
parent eefe96b000
commit 29e7ef959d

View file

@ -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 */