summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2004-06-15 23:16:43 +0000
committerBjörn Stenberg <bjorn@haxx.se>2004-06-15 23:16:43 +0000
commitb876296c9bc9f010c29d90b4e502fcda5f0bf0c6 (patch)
tree4a061f91c98024b94837ca06700735bd114ccec7 /apps/plugin.c
parent8fb114169788f04b61b0e6480b4ac0d2fae9205f (diff)
downloadrockbox-b876296c9bc9f010c29d90b4e502fcda5f0bf0c6.zip
rockbox-b876296c9bc9f010c29d90b4e502fcda5f0bf0c6.tar.gz
rockbox-b876296c9bc9f010c29d90b4e502fcda5f0bf0c6.tar.bz2
rockbox-b876296c9bc9f010c29d90b4e502fcda5f0bf0c6.tar.xz
Moved battery_level() to the end, where it doesn't break backwards compatibility
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4750 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index c4fd101..9354fab 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -167,7 +167,6 @@ static struct plugin_api rockbox_api = {
atoi,
get_time,
plugin_get_buffer,
- battery_level,
/* new stuff at the end, sort into place next time the API gets incompatible */
@@ -232,6 +231,7 @@ static struct plugin_api rockbox_api = {
mas_codec_writereg,
#endif
#endif
+ battery_level,
};
int plugin_load(char* plugin, void* parameter)