(svn r3393) -Fix: [OSX] some keyboards had a different scancode for opening the console (egladil)

This commit is contained in:
bjarni
2006-01-09 21:14:56 +00:00
parent 7c5a58bbad
commit be288e4d1b
2 changed files with 5 additions and 2 deletions

View File

@@ -226,7 +226,9 @@ typedef struct VkMapping {
#define AS(x, z) {x, z}
static const VkMapping _vk_mapping[] = {
AS(10, WKC_BACKQUOTE), // key left of '1'
AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1'
AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode
// Pageup stuff + up/down
//AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN), <==== Does this include HOME/END?
AS(QZ_PAGEUP, WKC_PAGEUP),