mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
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:
parent
bbcb0caaaa
commit
d9bba8189a
1 changed files with 3 additions and 3 deletions
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue