Skip to content

Commit 43359db

Browse files
committed
Add support for numpad add / substract key events
1 parent 9eb5ba6 commit 43359db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/system/win/sys_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ static const byte sys_keyRemap[] = {
255255
0, // 68 VK_NUMPAD8
256256
0, // 69 VK_NUMPAD9
257257
0, // 6A VK_MULTIPLY
258-
0, // 6B VK_ADD
258+
'+', // 6B VK_ADD
259259
0, // 6C VK_SEPARATOR
260-
0, // 6D VK_SUBTRACT
260+
'-', // 6D VK_SUBTRACT
261261
0, // 6E VK_DECIMAL
262262
0, // 6F VK_DIVIDE
263263
KEY_F1, // 70 VK_F1

0 commit comments

Comments
 (0)