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

really the last of the red this time


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

+8 -2
+7 -1
apps/gui/backdrop.c
··· 62 62 ret = read_bmp_file(filename, &bm, REMOTE_LCD_BACKDROP_BYTES, 63 63 FORMAT_NATIVE | FORMAT_DITHER | FORMAT_REMOTE, NULL); 64 64 return ((ret > 0) 65 - && (bm.width == REMOTE_LCD_WIDTH) && (bm.height == REMOTE_LCD_HEIGHT)); 65 + && (bm.width == LCD_REMOTE_WIDTH) && (bm.height == LCD_REMOTE_HEIGHT)); 66 66 } 67 + 68 + void remote_backdrop_show(char *backdrop_buffer) 69 + { 70 + lcd_remote_set_backdrop((fb_remote_data*)backdrop_buffer); 71 + } 72 + 67 73 #else /* needs stubs */ 68 74 69 75 bool remote_backdrop_load(const char *filename, char* backdrop_buffer)
+1 -1
apps/gui/statusbar-skinned.c
··· 93 93 /* need to make room on the buffer */ 94 94 size_t buf_size; 95 95 #if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) 96 - if (curr_screen == SCREEN_REMOTE) 96 + if (screen == SCREEN_REMOTE) 97 97 buf_size = REMOTE_LCD_BACKDROP_BYTES; 98 98 else 99 99 #endif