mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
sdl 1.1.4 doesn't have SDLK_COMPOSE
This commit is contained in:
parent
8f269ee821
commit
015fe8071a
1 changed files with 3 additions and 0 deletions
|
@ -744,9 +744,12 @@ IN_LL_SendKeyEvents (void)
|
|||
case SDLK_MODE:
|
||||
ksym = K_MODE;
|
||||
break;
|
||||
#if SDL_VERSIONNUM(SDL_MAJOR_VERSION,SDL_MINOR_VERSION,SDL_PATCHLEVEL) \
|
||||
>= SDL_VERSIONNUM(1,1,5)
|
||||
case SDLK_COMPOSE:
|
||||
ksym = K_COMPOSE;
|
||||
break;
|
||||
#endif
|
||||
case SDLK_HELP:
|
||||
ksym = K_HELP;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue