1
0
Fork 0
forked from len0rd/rockbox

stop the first press after exiting some plugins being eaten.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12986 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-04-01 00:17:06 +00:00
parent 1f33735097
commit c26a6bb57a

View file

@ -616,7 +616,8 @@ 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
@ -648,7 +649,6 @@ int plugin_load(const char* plugin, void* parameter)
lcd_remote_clear_display();
lcd_remote_update();
#endif
action_signalscreenchange();
if (pfn_tsr_exit == NULL)
plugin_loaded = false;