summaryrefslogtreecommitdiff
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-11-09 06:03:31 +1100
committerGitHub <noreply@github.com>2022-11-08 19:03:31 +0000
commitd810878d5e36e032ec99fb309b66caf3ea57e4ba (patch)
treec102744740f2beb805bfcea4ca86f1e41936dd11 /quantum/quantum.c
parent9a0f347a095ad46c8e44eaed6925811da63aef6c (diff)
Normalise output selection (Bluetooth) keycodes (#19004)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index c60ec22d8b..e7dc71e5d7 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -381,13 +381,13 @@ bool process_record_quantum(keyrecord_t *record) {
381 return false; 381 return false;
382#endif 382#endif
383#ifdef BLUETOOTH_ENABLE 383#ifdef BLUETOOTH_ENABLE
384 case OUT_AUTO: 384 case QK_OUTPUT_AUTO:
385 set_output(OUTPUT_AUTO); 385 set_output(OUTPUT_AUTO);
386 return false; 386 return false;
387 case OUT_USB: 387 case QK_OUTPUT_USB:
388 set_output(OUTPUT_USB); 388 set_output(OUTPUT_USB);
389 return false; 389 return false;
390 case OUT_BT: 390 case QK_OUTPUT_BLUETOOTH:
391 set_output(OUTPUT_BLUETOOTH); 391 set_output(OUTPUT_BLUETOOTH);
392 return false; 392 return false;
393#endif 393#endif