From e59bea7d9091e77d18af1d862b30a57ba6daca50 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 20 Feb 2008 04:47:46 +0000 Subject: [PATCH] change default Select mapping to question mark key for UK English keyboards --- stepmania/src/InputMapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/InputMapper.cpp b/stepmania/src/InputMapper.cpp index fc7338073a..620eb0548a 100644 --- a/stepmania/src/InputMapper.cpp +++ b/stepmania/src/InputMapper.cpp @@ -62,7 +62,7 @@ const InputMapping g_DefaultKeyMappings[] = { 0, KEY_UP, GAME_BUTTON_MENUUP, false }, { 0, KEY_DOWN, GAME_BUTTON_MENUDOWN, false }, { 0, KEY_ENTER, GAME_BUTTON_START, false }, - { 0, KEY_BACKSLASH, GAME_BUTTON_SELECT, false }, + { 0, KEY_QUESTION, GAME_BUTTON_SELECT, false }, { 0, KEY_ESC, GAME_BUTTON_BACK, false }, { 0, KEY_KP_C4, GAME_BUTTON_MENULEFT, true }, { 0, KEY_KP_C6, GAME_BUTTON_MENURIGHT, true },