1
0
Fork 0
forked from len0rd/rockbox

statusbar bug fix when going to the menu from the dir browser

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1933 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-08-22 22:53:12 +00:00
parent 518e1ec1e4
commit 634551ffeb

View file

@ -641,10 +641,6 @@ bool dirbrowse(char *root)
bool lastsortcase = global_settings.sort_case; bool lastsortcase = global_settings.sort_case;
bool show_hidden_files = global_settings.show_hidden_files; bool show_hidden_files = global_settings.show_hidden_files;
#ifdef HAVE_LCD_BITMAP
bool laststate=statusbar(false);
#endif
lcd_stop_scroll(); lcd_stop_scroll();
main_menu(); main_menu();
/* do we need to rescan dir? */ /* do we need to rescan dir? */
@ -653,9 +649,6 @@ bool dirbrowse(char *root)
show_hidden_files != global_settings.show_hidden_files) show_hidden_files != global_settings.show_hidden_files)
lastdir[0] = 0; lastdir[0] = 0;
restore = true; restore = true;
#ifdef HAVE_LCD_BITMAP
statusbar(laststate);
#endif
break; break;
} }