1
0
Fork 0
forked from len0rd/rockbox

scrollbar() parameters were swapped

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4859 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-07-09 07:04:45 +00:00
parent 209210e265
commit 6b559b1f97
2 changed files with 2 additions and 2 deletions

View file

@ -1607,7 +1607,7 @@ int wait_for_button(void)
void cb_progess(int current, int total)
{
rb->yield(); /* be nice to the other threads */
rb->scrollbar(0, LCD_HEIGHT-8, LCD_WIDTH, 8, 0, total,
rb->scrollbar(0, LCD_HEIGHT-8, LCD_WIDTH, 8, total, 0,
current, HORIZONTAL);
rb->lcd_update_rect(0, LCD_HEIGHT-8, LCD_WIDTH, 8);
}