diff options
author | tmk <nobody@nowhere> | 2012-06-28 20:15:56 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-06-28 20:15:56 +0900 |
commit | 3d81d5221eac9ca9620ba9043a250dcb8371b22e (patch) | |
tree | ae8f467e1691d42e01feaebc968aaade989924f3 /common/mousekey.c | |
parent | a9a3610dd4a168e473d2d6a2eb3fbc37aabb46c9 (diff) | |
download | qmk_firmware-3d81d5221eac9ca9620ba9043a250dcb8371b22e.tar.gz qmk_firmware-3d81d5221eac9ca9620ba9043a250dcb8371b22e.zip |
Add consumer/system control feature to LUFA.
Diffstat (limited to 'common/mousekey.c')
-rw-r--r-- | common/mousekey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/mousekey.c b/common/mousekey.c index 76bd0fd363..1d35355b49 100644 --- a/common/mousekey.c +++ b/common/mousekey.c @@ -121,12 +121,12 @@ void mousekey_clear_report(void) static void mousekey_debug(void) { if (!debug_mouse) return; - print("mousekey[btn|x y v h]: "); + print("mousekey [btn|x y v h]rep: ["); phex(report.buttons); print("|"); phex(report.x); print(" "); phex(report.y); print(" "); phex(report.v); print(" "); - phex(report.h); + phex(report.h); print("]"); phex(mousekey_repeat); print("\n"); } |