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.

The blit functions shouldn't exist for the simulator.

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

+2 -13
+1 -1
apps/plugin.c
··· 122 122 || defined (IRIVER_H10) 123 123 lcd_yuv_set_options, 124 124 #endif 125 - #elif (LCD_DEPTH < 4) || !defined(SIMULATOR) 125 + #elif (LCD_DEPTH < 4) && !defined(SIMULATOR) 126 126 lcd_blit_mono, 127 127 lcd_blit_grey_phase, 128 128 #endif /* LCD_DEPTH */
+1 -1
apps/plugin.h
··· 201 201 || defined (IRIVER_H10) 202 202 void (*lcd_yuv_set_options)(unsigned options); 203 203 #endif 204 - #elif (LCD_DEPTH < 4) || !defined(SIMULATOR) 204 + #elif (LCD_DEPTH < 4) && !defined(SIMULATOR) 205 205 void (*lcd_blit_mono)(const unsigned char *data, int x, int by, int width, 206 206 int bheight, int stride); 207 207 void (*lcd_blit_grey_phase)(unsigned char *values, unsigned char *phases,
-11
uisimulator/common/lcd-common.c
··· 24 24 #include "lcd.h" 25 25 #include "lcd-sdl.h" 26 26 27 - void lcd_blit_mono(const unsigned char *data, int x, int y, int width, int height, 28 - int stride) 29 - { 30 - (void)data; 31 - (void)x; 32 - (void)y; 33 - (void)width; 34 - (void)height; 35 - (void)stride; 36 - } 37 - 38 27 void lcd_set_flip(bool yesno) 39 28 { 40 29 (void)yesno;