diff --git a/keyboards/handwired/replicazeron/common/leds.c b/keyboards/handwired/replicazeron/common/leds.c index 2e2f31f8007..e63141cbd40 100644 --- a/keyboards/handwired/replicazeron/common/leds.c +++ b/keyboards/handwired/replicazeron/common/leds.c @@ -37,5 +37,5 @@ void set_leds(uint8_t highest_active_layer) { bool bit1 = !(highest_active_layer & 1); bool bit2 = !(highest_active_layer & 2); writePin(STATUS_LED_A_PIN, bit1); - writePin(STATUS_LED_A_PIN, bit2); + writePin(STATUS_LED_B_PIN, bit2); } diff --git a/keyboards/handwired/replicazeron/replicazeron.c b/keyboards/handwired/replicazeron/replicazeron.c index e3c5eab536a..35ea5e3f727 100644 --- a/keyboards/handwired/replicazeron/replicazeron.c +++ b/keyboards/handwired/replicazeron/replicazeron.c @@ -27,7 +27,7 @@ joystick_config_t joystick_axes[JOYSTICK_AXIS_COUNT] = { #endif #ifdef THUMBSTICK_ENABLE -void housekeeping_tak_user(void) { +void housekeeping_task_user(void) { if (controller_state.wasdMode) { thumbstick(controller_state); }