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.

Fix compile errors

Change-Id: Ic985bf57da04847bff716ee41db8f107100ff95b

+6
+2
apps/gui/skin_engine/skin_parser.c
··· 2058 2058 sb_skin_has_title(curr_screen); 2059 2059 #endif 2060 2060 break; 2061 + #endif 2062 + #if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)) 2061 2063 case SKIN_TOKEN_DRAWRECTANGLE: 2062 2064 function = parse_drawrectangle; 2063 2065 break;
+4
apps/gui/skin_engine/skin_render.c
··· 191 191 else 192 192 #endif 193 193 { 194 + #if LCD_DEPTH > 1 194 195 unsigned backup = vp->fg_pattern; 195 196 vp->fg_pattern = rect->start_colour; 197 + #endif 196 198 gwps->display->fillrect(rect->x, rect->y, rect->width, 197 199 rect->height); 200 + #if LCD_DEPTH > 1 198 201 vp->fg_pattern = backup; 202 + #endif 199 203 } 200 204 } 201 205 break;