Skip to content

Commit

Permalink
osd: fix stick transition max
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleiner committed Jun 26, 2023
1 parent 28be1c8 commit 2b05390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/render.c
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ void osd_display() {

osd_menu_select(2, 7, "TRANSITION");
if (osd_menu_select_vec3(13, 7, rates->transition, 5, 2)) {
rates->transition = osd_menu_adjust_vec3(rates->transition, 0.01, -1.0, -1.0);
rates->transition = osd_menu_adjust_vec3(rates->transition, 0.01, -1.0, 1.0);
}

osd_menu_select_save_and_exit(7);
Expand Down

0 comments on commit 2b05390

Please sign in to comment.