summaryrefslogtreecommitdiff
path: root/apps/menus/main_menu.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-12-17 02:37:21 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-12-17 02:37:21 +0000
commitf5ec3e49e0687eda7b9059942c23321f9878becf (patch)
tree7961798bfa368d0e0d191317b24ff0918eb981ca /apps/menus/main_menu.c
parentf6039466fb275f55be16113bbbf46872f90862c8 (diff)
downloadrockbox-f5ec3e49e0687eda7b9059942c23321f9878becf.tar.gz
rockbox-f5ec3e49e0687eda7b9059942c23321f9878becf.zip
remove the duplicated gui_list struct and only duplicate the members which are actually different on each screen. should translate to a smaller bin and easier code (users shouldnt notice any difference)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15947 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/main_menu.c')
-rw-r--r--apps/menus/main_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index 93d937e6db..a0786f9bc6 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -361,7 +361,7 @@ static int info_action_callback(int action, struct gui_synclist *lists)
361 ) 361 )
362 { 362 {
363#ifndef SIMULATOR 363#ifndef SIMULATOR
364 struct info_data *info = (struct info_data *)lists->gui_list[SCREEN_MAIN].data; 364 struct info_data *info = (struct info_data *)lists->data;
365 info->new_data = true; 365 info->new_data = true;
366 gui_syncsplash(0, ID2P(LANG_SCANNING_DISK)); 366 gui_syncsplash(0, ID2P(LANG_SCANNING_DISK));
367 fat_recalc_free(IF_MV(0)); 367 fat_recalc_free(IF_MV(0));