From 49ea16e2eb89d856c080b2570edcac67639802a5 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Wed, 14 Apr 2004 06:04:38 +0000 Subject: Fixed the bug that caused the menu cursor to start at the first line every time git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4500 a1c6a512-1295-4272-9138-f99709370657 --- apps/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/menu.c b/apps/menu.c index 147d4b2aee..ca27196cd9 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -289,7 +289,7 @@ int menu_show(int m) #endif /* Put the cursor on the first line and draw the menu */ - put_cursor(m, 0); + put_cursor(m, menus[m].cursor); while (!exit) { key = button_get_w_tmo(HZ/2); -- cgit v1.2.3