1
0
Fork 0
forked from len0rd/rockbox

Fix misleading indentation as pointed out by the new gcc warning

Change-Id: Ia9c0b09ffb57dccbc7d13fce3b3a8a7d46b84857
This commit is contained in:
Frank Gevaerts 2016-08-12 15:33:28 +02:00
parent 37cc433628
commit 4f7f7f286d
5 changed files with 28 additions and 10 deletions

View file

@ -173,12 +173,12 @@ enum plugin_status plugin_start(const void* parameter)
case 1:
if (cur_sel == 0)
break;
swap_items(cur_sel, cur_sel - 1);
swap_items(cur_sel, cur_sel - 1);
break;
case 2:
if (cur_sel + 1 == menu_item_count)
break;
swap_items(cur_sel, cur_sel + 1);
swap_items(cur_sel, cur_sel + 1);
break;
case 4:
rb->root_menu_set_default(&rb->global_settings->root_menu_customized, NULL);