Skip to content

Commit af8cbec

Browse files
authored
Merge pull request #42 from mavlink/fix/color-toggle-keybind
fix: rebind classic color toggle from L to K
2 parents cbfc33b + 4091419 commit af8cbec

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
@@ -229,8 +229,8 @@ int main(int argc, char *argv[]) {
229229
trail_mode = (trail_mode + 1) % 3;
230230
}
231231

232-
// Toggle classic/modern arm colors (L = legacy)
233-
if (IsKeyPressed(KEY_L)) {
232+
// Toggle classic/modern arm colors
233+
if (IsKeyPressed(KEY_K)) {
234234
classic_colors = !classic_colors;
235235
}
236236

0 commit comments

Comments
 (0)