diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-04-04 19:38:46 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-04-04 19:38:46 +0000 |
| commit | ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9 (patch) | |
| tree | b327ea00d2320464d5022b63690032ec31b55f47 /apps/plugin.c | |
| parent | 3183b9e534eba4ca07ffaa68895e63177b5d8761 (diff) | |
| download | rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.zip rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.gz rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.bz2 rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.xz | |
Allow to select the core for running the user timer on portalplayer targets. * Incompatible plugin API change -> sorted API.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16965 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7c3fab1..66e3d63 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -144,6 +144,7 @@ static const struct plugin_api rockbox_api = { #if CONFIG_CHARGING backlight_set_timeout_plugged, #endif + is_backlight_on, gui_syncsplash, #ifdef HAVE_REMOTE_LCD @@ -477,7 +478,7 @@ static const struct plugin_api rockbox_api = { # endif #endif #ifdef HAVE_USB_POWER - usb_powered, + usb_powered, #endif /* misc */ @@ -576,7 +577,6 @@ static const struct plugin_api rockbox_api = { /* new stuff at the end, sort into place next time the API gets incompatible */ - is_backlight_on, }; int plugin_load(const char* plugin, void* parameter) |