From 50e0bbccd6ba2a43ba5754bdd94a7e9836c3d2e0 Mon Sep 17 00:00:00 2001 From: Florian Date: Thu, 20 Jun 2024 16:01:01 +0700 Subject: [PATCH] fix: removes delay when sending layer switches over hid --- quantum/oryx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/quantum/oryx.c b/quantum/oryx.c index 55228c5121cf..2fa367d54bb4 100644 --- a/quantum/oryx.c +++ b/quantum/oryx.c @@ -247,7 +247,6 @@ bool process_record_oryx(uint16_t keycode, keyrecord_t *record) { void layer_state_set_oryx(layer_state_t state) { if (rawhid_state.paired) { - wait_ms(50); uint8_t event[RAW_EPSIZE]; event[0] = ORYX_EVT_LAYER; event[1] = get_highest_layer(state);