summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 6d48329111..2149fdaee8 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -181,6 +181,9 @@ static const struct plugin_api rockbox_api = {
181 lcd_remote_bitmap, 181 lcd_remote_bitmap,
182#endif 182#endif
183 183
184#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4) && !defined(SIMULATOR)
185 lcd_grey_phase_blit,
186#endif
184#if defined(HAVE_LCD_COLOR) 187#if defined(HAVE_LCD_COLOR)
185 lcd_yuv_blit, 188 lcd_yuv_blit,
186#endif 189#endif
@@ -583,10 +586,6 @@ static const struct plugin_api rockbox_api = {
583 sound_unit, 586 sound_unit,
584 sound_val2phys, 587 sound_val2phys,
585#endif /* CONFIG_CODEC == SWCODEC */ 588#endif /* CONFIG_CODEC == SWCODEC */
586
587#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4) && !defined(SIMULATOR)
588 lcd_grey_phase_blit,
589#endif
590}; 589};
591 590
592int plugin_load(const char* plugin, void* parameter) 591int plugin_load(const char* plugin, void* parameter)