diff options
| author | Ray <raysan5@gmail.com> | 2018-08-19 17:58:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-19 17:58:01 +0200 |
| commit | d52b6c23eebf6401009b03b26f8c576c7f04b147 (patch) | |
| tree | 3b0e08fe2594c51a553541db1f9a5afe307a9af6 | |
| parent | 506b7b8d7c2e367d61ee92a77b54fb115a566173 (diff) | |
| parent | 6a5dbeace83fa9dd71d9a884d2ada51e2a79d596 (diff) | |
| download | raylib-d52b6c23eebf6401009b03b26f8c576c7f04b147.tar.gz raylib-d52b6c23eebf6401009b03b26f8c576c7f04b147.zip | |
Merge pull request #628 from justinclift/keyboard_keys_v1
Add the plus and minus keys on both the main keyboard and keypad
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index af31e779..bd549391 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -133,6 +133,8 @@ #define KEY_F10 299 #define KEY_F11 300 #define KEY_F12 301 +#define KEY_KP_SUBTRACT 333 +#define KEY_KP_ADD 334 #define KEY_LEFT_SHIFT 340 #define KEY_LEFT_CONTROL 341 #define KEY_LEFT_ALT 342 @@ -140,7 +142,9 @@ #define KEY_RIGHT_CONTROL 345 #define KEY_RIGHT_ALT 346 #define KEY_GRAVE 96 +#define KEY_MINUS 45 #define KEY_SLASH 47 +#define KEY_EQUAL 61 #define KEY_BACKSLASH 92 // Keyboard Alpha Numeric Keys |
