summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
authorMats Lidell <matsl@rockbox.org>2002-10-15 12:56:05 +0000
committerMats Lidell <matsl@rockbox.org>2002-10-15 12:56:05 +0000
commit18739873154648ea6fbb40623cc021b2d4ca0a5d (patch)
treed3e417c6b2eb6c70ba87320a8c7e45dae03716fd /apps/main_menu.c
parenta87ce29bf87041e6c022f8d3215e5de948bcddea (diff)
downloadrockbox-18739873154648ea6fbb40623cc021b2d4ca0a5d.tar.gz
rockbox-18739873154648ea6fbb40623cc021b2d4ca0a5d.zip
Use status_set...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2661 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index cf31e74961..9a31687500 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -37,6 +37,7 @@
37#include "power.h" 37#include "power.h"
38#include "powermgmt.h" 38#include "powermgmt.h"
39#include "sound_menu.h" 39#include "sound_menu.h"
40#include "status.h"
40 41
41#include "lang.h" 42#include "lang.h"
42 43
@@ -241,11 +242,11 @@ bool main_menu(void)
241 242
242 m=menu_init( items, sizeof items / sizeof(struct menu_items) ); 243 m=menu_init( items, sizeof items / sizeof(struct menu_items) );
243#ifdef HAVE_LCD_CHARCELLS 244#ifdef HAVE_LCD_CHARCELLS
244 lcd_icon(ICON_PARAM, true); 245 status_set_param(true);
245#endif 246#endif
246 result = menu_run(m); 247 result = menu_run(m);
247#ifdef HAVE_LCD_CHARCELLS 248#ifdef HAVE_LCD_CHARCELLS
248 lcd_icon(ICON_PARAM, false); 249 status_set_param(false);
249#endif 250#endif
250 menu_exit(m); 251 menu_exit(m);
251 252