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:
parent
188c23aa21
commit
49ea16e2eb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue