diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
| commit | f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch) | |
| tree | a24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/plugin.c | |
| parent | 9d756e2760a0926aa416b22e276c4a5b2685e84e (diff) | |
| download | rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.bz2 rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.xz | |
remove the need for action_signalscreenchange().
Fixes problems with targets where the ACTION_STD_CANCEL event is a combo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 68b430d..f61e799 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -411,7 +411,6 @@ static const struct plugin_api rockbox_api = { /* action handling */ get_custom_action, get_action, - action_signalscreenchange, action_userabort, /* power */ @@ -515,7 +514,6 @@ int plugin_load(const char* plugin, void* parameter) if (!p) p = plugin; - action_signalscreenchange(); if (pfn_tsr_exit != NULL) /* if we have a resident old plugin: */ { @@ -611,7 +609,6 @@ int plugin_load(const char* plugin, void* parameter) rc = hdr->entry_point((struct plugin_api*) &rockbox_api, parameter); /* explicitly casting the pointer here to avoid touching every plugin. */ - action_signalscreenchange(); button_clear_queue(); #ifdef HAVE_LCD_BITMAP |