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
This commit is contained in:
Ozkan Sezer 2010-04-24 16:54:55 +00:00
parent bbcb0caaaa
commit d9bba8189a

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