A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
2
fork

Configure Feed

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

Kill a few warnings in plugins.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12366 a1c6a512-1295-4272-9138-f99709370657

Tom Ross 2ad25c88 f435db01

+5 -5
+1 -1
apps/plugins/blackjack.c
··· 824 824 rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 4*h - 1, message); 825 825 rb->snprintf(str, 9, "$%d", amount); 826 826 rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 3*h, str); 827 - #if (CONFIG_KEY == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD) 827 + #if (CONFIG_KEYPAD == IPOD_3G_PAD) || (CONFIG_KEYPAD == IPOD_4G_PAD) 828 828 rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - h-2, " >>|: +1"); 829 829 rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 - 1, " |<<: -1"); 830 830 rb->lcd_putsxy(LCD_WIDTH/2 - 9*w, LCD_HEIGHT/2 + h, "SCROLL+: +10");
+2 -2
apps/plugins/chopper.c
··· 618 618 { "Steep", -1 }, 619 619 }; 620 620 621 - #if HAVE_LCD_COLOR 621 + #ifdef HAVE_LCD_COLOR 622 622 rb->lcd_set_foreground(LCD_WHITE); 623 623 rb->lcd_set_background(LCD_BLACK); 624 624 #elif LCD_DEPTH == 2 ··· 920 920 #if LCD_DEPTH > 1 921 921 rb->lcd_set_backdrop(NULL); 922 922 #endif 923 - #if HAVE_LCD_COLOR 923 + #ifdef HAVE_LCD_COLOR 924 924 rb->lcd_set_background(LCD_BLACK); 925 925 rb->lcd_set_foreground(LCD_WHITE); 926 926 #endif
+1 -1
apps/plugins/doom/w_wad.c
··· 512 512 { 513 513 int c; 514 514 515 - #if DEBUGCACHE 515 + #ifdef DEBUGCACHE 516 516 if(gamestate==GS_LEVEL) 517 517 printf("Loading %s\n", lumpinfo[lump].name); 518 518 #endif
+1 -1
apps/plugins/vu_meter.c
··· 131 131 132 132 const struct plugin_api* rb; 133 133 134 - #if SIMULATOR && (CONFIG_CODEC != SWCODEC) 134 + #if defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC) 135 135 #define mas_codec_readreg(x) rand()%MAX_PEAK 136 136 #endif 137 137