Skip to content

Commit

Permalink
[Bug] Fix command feature if mousekey is enabled and using 3-speed se…
Browse files Browse the repository at this point in the history
…tting (#14697)
  • Loading branch information
drashna authored Oct 6, 2021
1 parent 22470f0 commit 3b8c497
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quantum/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# include "backlight.h"
#endif

#if defined(MOUSEKEY_ENABLE) && !defined(MK_3_SPEED)
#if defined(MOUSEKEY_ENABLE)
# include "mousekey.h"
#endif

Expand All @@ -53,7 +53,7 @@ static void print_version(void);
static void print_status(void);
static bool command_console(uint8_t code);
static void command_console_help(void);
#if defined(MOUSEKEY_ENABLE) && !defined(MK_3_SPEED)
#if defined(MOUSEKEY_ENABLE)
static bool mousekey_console(uint8_t code);
#endif

Expand All @@ -73,7 +73,7 @@ bool command_proc(uint8_t code) {
else
return (command_console_extra(code) || command_console(code));
break;
#if defined(MOUSEKEY_ENABLE) && !defined(MK_3_SPEED)
#if defined(MOUSEKEY_ENABLE)
case MOUSEKEY:
mousekey_console(code);
break;
Expand Down

0 comments on commit 3b8c497

Please sign in to comment.