summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 1196a88195..4c0ec84aa0 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -565,10 +565,6 @@ static const struct plugin_api rockbox_api = {
565 /* statusbars */ 565 /* statusbars */
566 &statusbars, 566 &statusbars,
567 gui_syncstatusbar_draw, 567 gui_syncstatusbar_draw,
568#ifdef HAVE_LCD_BITMAP
569 sb_skin_get_info_vp,
570 sb_skin_update,
571#endif
572 568
573 /* options */ 569 /* options */
574 get_settings_list, 570 get_settings_list,
@@ -722,6 +718,12 @@ static const struct plugin_api rockbox_api = {
722#endif 718#endif
723 719
724 rbversion, 720 rbversion,
721
722#ifdef HAVE_LCD_BITMAP
723 sb_skin_get_info_vp,
724 sb_skin_update,
725#endif
726
725 /* new stuff at the end, sort into place next time 727 /* new stuff at the end, sort into place next time
726 the API gets incompatible */ 728 the API gets incompatible */
727}; 729};