From 6eca4afac511e40c08b1071b25ba04fec02c1246 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Sat, 11 Apr 2026 13:23:42 +0200 Subject: [PATCH] core: Fix typo in InfoLedPattern (#2029) --- src/core/hle/service/mcu/mcu_rtc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/mcu/mcu_rtc.h b/src/core/hle/service/mcu/mcu_rtc.h index 651b650df..a5a3cd692 100644 --- a/src/core/hle/service/mcu/mcu_rtc.h +++ b/src/core/hle/service/mcu/mcu_rtc.h @@ -17,7 +17,7 @@ struct InfoLedPattern { u8 ticks_per_index{}; // Amount of ticks to stay in the current index (1 tick == 1/512 s) u8 ticks_to_progress{}; // Amount of ticks to go from the previous value to the current // index value. Normally, this only makes sense to be set to 0 to - // disable interpolation, or equal to "ticks_to_progress" for linear + // disable interpolation, or equal to "ticks_per_index" for linear // interpolation. Any other value breaks the interpolation math. u8 last_index_repeat_times{}; // Amount of times to repeat the last index, as if the color // array had "last_index_repeat_times" more elements equal to