diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-13 21:37:46 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-09-13 21:37:46 -0400 |
commit | 15c4c969298c303899bf80fbc962591d84163216 (patch) | |
tree | eaa63dc48c5a841f2a5076d63709d7572a69370d /cores/arduino | |
parent | d3c96622b31b0f000881081ac4cdbdda28dd9da3 (diff) |
fixed Mouse button assignments
Diffstat (limited to 'cores/arduino')
-rw-r--r-- | cores/arduino/USBAPI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h index 73a90ce..ae91a36 100644 --- a/cores/arduino/USBAPI.h +++ b/cores/arduino/USBAPI.h @@ -44,8 +44,8 @@ extern Serial_ Serial; // Mouse #define MOUSE_LEFT 1 -#define MOUSE_MIDDLE 2 -#define MOUSE_RIGHT 4 +#define MOUSE_RIGHT 2 +#define MOUSE_MIDDLE 4 class Mouse_ { |