core: Fix for un-defined function when compiling without MOUSEKEY_ENABLE

main
alex-ong 2018-01-22 14:50:38 +11:00
parent 8c91a997b3
commit 8770269e1e
1 changed files with 2 additions and 1 deletions

View File

@ -57,9 +57,10 @@ static void command_console_help(void);
#ifdef MOUSEKEY_ENABLE
static bool mousekey_console(uint8_t code);
static void mousekey_console_help(void);
static uint8_t numkey2num(uint8_t code);
#endif
static uint8_t numkey2num(uint8_t code);
static void switch_default_layer(uint8_t layer);