X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=tmk_core%2Fcommon%2Fhost.c;h=e12b6221656f53173e13e3a4f2a14465b863470b;hb=a8f872e728cde990f7b272306480eedc96a7f3f7;hp=e9b791670670eed07b9956495c1fc38dde989bab;hpb=79cfa894afbc0a94ac642f57de905d9afc068ce7;p=qmk_firmware.git diff --git a/tmk_core/common/host.c b/tmk_core/common/host.c index e9b791670..e12b62216 100644 --- a/tmk_core/common/host.c +++ b/tmk_core/common/host.c @@ -22,11 +22,6 @@ along with this program. If not, see . #include "util.h" #include "debug.h" - -#ifdef NKRO_ENABLE -bool keyboard_nkro = true; -#endif - static host_driver_t *driver; static uint16_t last_system_report = 0; static uint16_t last_consumer_report = 0; @@ -86,7 +81,7 @@ void host_consumer_send(uint16_t report) (*driver->send_consumer)(report); } -uint16_t host_last_sysytem_report(void) +uint16_t host_last_system_report(void) { return last_system_report; }