mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-26 03:51:46 +00:00
Made ctrl cmd on mac (#148)
This commit is contained in:
parent
9d0a61450b
commit
4cc9ff853d
1 changed files with 10 additions and 2 deletions
|
|
@ -9,14 +9,22 @@
|
|||
#define SCANCODE_ESCAPE 1
|
||||
#define SCANCODE_BACKSPACE 14
|
||||
#define SCANCODE_ENTER 28
|
||||
#define SCANCODE_CONTROL_LEFT 29
|
||||
#ifdef __APPLE__
|
||||
#define SCANCODE_CONTROL_LEFT 91
|
||||
#else
|
||||
#define SCANCODE_CONTROL_LEFT 29
|
||||
#endif
|
||||
#define SCANCODE_SHIFT_LEFT 42
|
||||
#define SCANCODE_A 30
|
||||
#define SCANCODE_X 45
|
||||
#define SCANCODE_C 46
|
||||
#define SCANCODE_V 47
|
||||
#define SCANCODE_SHIFT_RIGHT 54
|
||||
#define SCANCODE_CONTROL_RIGHT 285
|
||||
#ifdef __APPLE__
|
||||
#define SCANCODE_CONTROL_RIGHT 92
|
||||
#else
|
||||
#define SCANCODE_CONTROL_RIGHT 285
|
||||
#endif
|
||||
#define SCANCODE_HOME 327
|
||||
#define SCANCODE_LEFT 331
|
||||
#define SCANCODE_RIGHT 333
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue