Make next_screen static and add a comment.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23210 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-10-16 19:14:46 +00:00
parent e9c10189e9
commit a3f0a45c0f
1 changed files with 4 additions and 1 deletions

View File

@ -70,11 +70,14 @@ struct root_items {
void* param;
const struct menu_item_ex *context_menu;
};
static int next_screen = GO_TO_ROOT; /* holding info about the upcoming screen
* which is the current screen for the
* rest of the code after load_screen
* is called */
static int last_screen = GO_TO_ROOT; /* unfortunatly needed so we can resume
or goto current track based on previous
screen */
int next_screen = GO_TO_ROOT;
static char current_track_path[MAX_PATH];
static void rootmenu_track_changed_callback(void* param)