mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r981) SunOS: fixed the hotkey for console (Oskar)
This commit is contained in:
parent
1f31bee5e4
commit
ecf7e8e9a7
2
sdl.c
2
sdl.c
@ -416,6 +416,8 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym)
|
||||
if (sym->scancode == 0) key |= WKC_BACKQUOTE; // yes, that key is code '0' under MorphOS :)
|
||||
#elif defined(__BEOS__)
|
||||
if (sym->scancode == 17) key |= WKC_BACKQUOTE;
|
||||
#elif defined(__SVR4) && defined(__sun)
|
||||
if (sym->scancode == 60) key |= WKC_BACKQUOTE;
|
||||
#else
|
||||
if (sym->scancode == 49) key |= WKC_BACKQUOTE;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user