Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove extraneous parens

+6 -6
+1 -1
apps/gui/wps.c
··· 592 592 #endif 593 593 return; 594 594 } 595 - else if ((direction == -1 && elapsed < step)) 595 + else if (direction == -1 && elapsed < step) 596 596 { 597 597 elapsed = 0; 598 598 }
+1 -1
apps/menu.c
··· 459 459 selected = get_menu_selection(gui_synclist_get_sel_pos(&lists),menu); 460 460 temp = menu->submenus[selected]; 461 461 type = (temp->flags&MENU_TYPE_MASK); 462 - if ((type == MT_SETTING_W_TEXT || type == MT_SETTING)) 462 + if (type == MT_SETTING_W_TEXT || type == MT_SETTING) 463 463 { 464 464 #ifdef HAVE_QUICKSCREEN 465 465 MENUITEM_STRINGLIST(quickscreen_able_option,
+1 -1
apps/menus/main_menu.c
··· 333 333 { 334 334 if (action == ACTION_STD_CANCEL) 335 335 return action; 336 - else if ((action == ACTION_STD_OK) 336 + else if (action == ACTION_STD_OK 337 337 #ifdef HAVE_HOTSWAP 338 338 || action == SYS_FS_CHANGED 339 339 #endif
+2 -2
firmware/drivers/fat.c
··· 1596 1596 while(i++ < 8) 1597 1597 { 1598 1598 /* hunt for ~ and where to put it */ 1599 - if((!tilde) && (*nameptr == '~')) 1599 + if(!tilde && *nameptr == '~') 1600 1600 tilde = nameptr; 1601 - if((!lastpt) && ((*nameptr == ' ' || *nameptr == '~'))) 1601 + if(!lastpt && (*nameptr == ' ' || *nameptr == '~')) 1602 1602 lastpt = nameptr; 1603 1603 nameptr++; 1604 1604 }
+1 -1
firmware/target/arm/philips/hdd6330/button-hdd6330.c
··· 82 82 { 83 83 int_btn |= BUTTON_TAP; 84 84 } 85 - else if ((data[0] == MEP_ABSOLUTE_HEADER)) 85 + else if (data[0] == MEP_ABSOLUTE_HEADER) 86 86 { 87 87 if (data[1] & MEP_FINGER) 88 88 {