Accept a quick patch from Alexander Levin to neaten up the #defines and comments from my earlier commit

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19897 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2009-02-01 13:43:08 +00:00
parent ee8c479dff
commit 036fb05dfd
13 changed files with 52 additions and 36 deletions

View file

@ -636,7 +636,7 @@ static const struct plugin_api rockbox_api = {
int plugin_load(const char* plugin, const void* parameter)
{
int rc;
char oldbars;
int oldbars;
struct plugin_header *hdr;
#ifdef SIMULATOR
void *pd;
@ -743,7 +743,7 @@ int plugin_load(const char* plugin, const void* parameter)
#endif
invalidate_icache();
oldbars = viewportmanager_set_statusbar(0);
oldbars = viewportmanager_set_statusbar(VP_SB_HIDE_ALL);
rc = hdr->entry_point(parameter);