summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 1bc4817ecd..6a91ce9688 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 Björn Stenberg 10 * Copyright (C) 2002 Bj�n Stenberg
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -442,6 +442,12 @@ static const struct plugin_api rockbox_api = {
442 442
443 set_int, 443 set_int,
444 reload_directory, 444 reload_directory,
445 set_bool,
446#if NB_SCREENS == 2
447 {&screens[SCREEN_MAIN], &screens[SCREEN_REMOTE]},
448#else
449 {&screens[SCREEN_MAIN]},
450#endif
445}; 451};
446 452
447int plugin_load(const char* plugin, void* parameter) 453int plugin_load(const char* plugin, void* parameter)