Skip to content

Commit

Permalink
KYRA: (EOB) - improve keyboard control for spell book cursor with non…
Browse files Browse the repository at this point in the history
… QWERTZ keyboards
  • Loading branch information
athrxx authored and unknown committed Jan 3, 2012
1 parent bda4e9b commit 4fd0e9e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion engines/kyra/kyra_v1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,18 @@ void KyraEngine_v1::setupKeyMap() {
{ KC(KP_MINUS), 105, 0/*unknown*/ },
{ KC(PLUS), 13, 0/*unknown*/ },
{ KC(KP_PLUS), 106, 0/*unknown*/ },

// Multiple mappings for the keys to the right of the 'M' key,
// since these are different for QWERTZ, QWERTY and AZERTY keyboards.
// QWERTZ
{ KC(COMMA), 53, 0/*unknown*/ },
{ KC(PERIOD), 54, 0/*unknown*/ }
{ KC(PERIOD), 54, 0/*unknown*/ },
// AZERTY
{ KC(SEMICOLON), 53, 0/*unknown*/ },
{ KC(COLON), 54, 0/*unknown*/ },
// QWERTY
{ KC(LESS), 53, 0/*unknown*/ },
{ KC(GREATER), 54, 0/*unknown*/ }
};
#undef KC

Expand Down

0 comments on commit 4fd0e9e

Please sign in to comment.