mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-13 23:40:58 +00:00
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:
parent
eefe96b000
commit
29e7ef959d
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