diff options
author | tmk <nobody@nowhere> | 2011-12-22 01:05:28 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-12-22 01:05:28 +0900 |
commit | 7386c761912530bbb53496002ab32d02c8a86833 (patch) | |
tree | d974c9f82f4db2434ac26357f4f3e38a2d4f6777 /host.c | |
parent | baf885dc31e1d4ac98e03870dffea6e19c259427 (diff) | |
download | qmk_firmware-7386c761912530bbb53496002ab32d02c8a86833.tar.gz |
fixed a bug on host_system_send().
Diffstat (limited to 'host.c')
-rw-r--r-- | host.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ void host_mouse_send(report_mouse_t *report) void host_system_send(uint16_t data) { if (!driver) return; - (*driver->send_consumer)(data); + (*driver->send_system)(data); } void host_consumer_send(uint16_t data) |