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
This commit is contained in:
Linus Nielsen Feltzing 2004-04-14 06:04:38 +00:00
parent 188c23aa21
commit 49ea16e2eb

View file

@ -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);