Skip to content

Commit e7c0d17

Browse files
committed
fix: rebind classic color toggle from L to K
L key conflicted with replay looping toggle in replay mode, causing both to fire on the same keypress.
1 parent bcce88e commit e7c0d17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ int main(int argc, char *argv[]) {
226226
trail_mode = (trail_mode + 1) % 3;
227227
}
228228

229-
// Toggle classic/modern arm colors (L = legacy)
230-
if (IsKeyPressed(KEY_L)) {
229+
// Toggle classic/modern arm colors
230+
if (IsKeyPressed(KEY_K)) {
231231
classic_colors = !classic_colors;
232232
}
233233

0 commit comments

Comments
 (0)