summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-10-06 00:50:53 +0000
committerQMK Bot <hello@qmk.fm>2021-10-06 00:50:53 +0000
commit9f0e74802a9fef5bad5052ef0f54fa2ab533f578 (patch)
tree1773d86c64925513f8f10f791e3b1bda3413711a
parent97197f2ca268e3d80b0e1368c55ef678c5180508 (diff)
parent3b8c4979dc17a52cd87f30b4986ca46d0b365860 (diff)
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--quantum/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/command.c b/quantum/command.c
index 2ff640a7bc..6d56a25ea1 100644
--- a/quantum/command.c
+++ b/quantum/command.c
@@ -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
@@ -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
@@ -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;