diff options
author | 2019-09-07 15:22:57 -0400 | |
---|---|---|
committer | 2019-09-07 15:22:57 -0400 | |
commit | 4ee8cf6fd3b7f21e2fce3b279012e07a0f29b566 (patch) | |
tree | 2e7d2ff7496861c8b3d6dfd204f75b2764c0dccb | |
parent | 035380ca97d175450f6e32f3d6549912ed691993 (diff) |
apple2: fix modifier codes for M and N keys on II and II Plus [Golden Child]
-rw-r--r-- | src/mame/drivers/apple2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/apple2.cpp b/src/mame/drivers/apple2.cpp index 61767d7ddeb..17235a8ad4f 100644 --- a/src/mame/drivers/apple2.cpp +++ b/src/mame/drivers/apple2.cpp @@ -989,8 +989,8 @@ static const uint8_t a2_key_remap[0x32][4] = { 0x43,0x43,0x03,0x03 }, /* c C 20 */ { 0x56,0x56,0x16,0x16 }, /* v V 21 */ { 0x42,0x42,0x02,0x02 }, /* b B 22 */ - { 0x4e,0x5e,0x0e,0x5e }, /* n N 23 */ - { 0x4d,0x4d,0x0d,0x0d }, /* m M 24 */ + { 0x4e,0x5e,0x0e,0x1e }, /* n N 23 */ + { 0x4d,0x5d,0x0d,0x1d }, /* m M 24 */ { 0x2c,0x3c,0x2c,0x3c }, /* , < 25 */ { 0x2e,0x3e,0x2e,0x3e }, /* . > 26 */ { 0x2f,0x3f,0x2f,0x3f }, /* / ? 27 */ |