diff options
author | 2018-05-11 10:31:01 -0400 | |
---|---|---|
committer | 2018-05-11 10:31:01 -0400 | |
commit | cb1c49df0b91d665c01404085801f5a0fd0aa4e6 (patch) | |
tree | 8a3c8d968fc8cf9a9a9c261ecae468ef2e9c5da5 /src/emu/natkeyboard.cpp | |
parent | f43edc73b1241dc9b6e2259f298d99a4f7ae7013 (diff) |
Make "Keypad ," and "Keypad =" standard keys
Diffstat (limited to 'src/emu/natkeyboard.cpp')
-rw-r--r-- | src/emu/natkeyboard.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/natkeyboard.cpp b/src/emu/natkeyboard.cpp index 2c579b6b894..9a50109eb6f 100644 --- a/src/emu/natkeyboard.cpp +++ b/src/emu/natkeyboard.cpp @@ -300,7 +300,9 @@ const char_info charinfo[] = { UCHAR_MAMEKEY(BS_PAD), "\010" }, // Backspace on the numeric keypad { UCHAR_MAMEKEY(TAB_PAD), "\011" }, // Tab on the numeric keypad { UCHAR_MAMEKEY(00_PAD), "00" }, // 00 on the numeric keypad - { UCHAR_MAMEKEY(000_PAD), "000" } // 000 on the numeric keypad + { UCHAR_MAMEKEY(000_PAD), "000" }, // 000 on the numeric keypad + { UCHAR_MAMEKEY(COMMA_PAD), "," }, // , on the numeric keypad + { UCHAR_MAMEKEY(EQUALS_PAD), "=" } // = on the numeric keypad }; |