(svn r2314) - Feature: [ 1187490 ] Patches for building on IRIX (jgilje)

This commit is contained in:
Darkvater
2005-05-14 22:42:33 +00:00
parent 220e5be863
commit 4c0c553a8f
3 changed files with 7 additions and 1 deletions

2
sdl.c
View File

@@ -421,6 +421,8 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym)
#elif defined(__SVR4) && defined(__sun)
if (sym->scancode == 60) key |= WKC_BACKQUOTE;
if (sym->scancode == 49) key |= WKC_BACKSPACE;
#elif defined(__sgi__)
if (sym->scancode == 22) key |= WKC_BACKQUOTE;
#else
if (sym->scancode == 41) key |= WKC_BACKQUOTE; // Linux console
if (sym->scancode == 49) key |= WKC_BACKQUOTE;