sdl.c
changeset 1428 1d567c8e5860
parent 1369 283615ce1619
child 1474 a26a21fa10ef
equal deleted inserted replaced
1427:4c6026590971 1428:1d567c8e5860
   428 	if (sym->scancode == 17)  key |= WKC_BACKQUOTE;
   428 	if (sym->scancode == 17)  key |= WKC_BACKQUOTE;
   429 #elif defined(__SVR4) && defined(__sun)
   429 #elif defined(__SVR4) && defined(__sun)
   430 	if (sym->scancode == 60) key |= WKC_BACKQUOTE;
   430 	if (sym->scancode == 60) key |= WKC_BACKQUOTE;
   431 	if (sym->scancode == 49) key |= WKC_BACKSPACE;
   431 	if (sym->scancode == 49) key |= WKC_BACKSPACE;
   432 #else
   432 #else
       
   433 	if (sym->scancode == 41) key |= WKC_BACKQUOTE; // Linux console
   433 	if (sym->scancode == 49) key |= WKC_BACKQUOTE;
   434 	if (sym->scancode == 49) key |= WKC_BACKQUOTE;
   434 #endif
   435 #endif
   435 
   436 
   436 	// META are the command keys on mac
   437 	// META are the command keys on mac
   437 	if (sym->mod & KMOD_META) key |= WKC_META;
   438 	if (sym->mod & KMOD_META) key |= WKC_META;