diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-07-09 07:04:45 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-07-09 07:04:45 +0000 |
| commit | 6b559b1f976387a93f9ccc692eaea9dd8f9f5fc4 (patch) | |
| tree | d56350eb86687254b06a73fe6a2ac976c9abab65 /apps/plugins/jpeg.c | |
| parent | 209210e265cae4fe2fc35a92e74247df5d1d6a2d (diff) | |
| download | rockbox-6b559b1f976387a93f9ccc692eaea9dd8f9f5fc4.zip rockbox-6b559b1f976387a93f9ccc692eaea9dd8f9f5fc4.tar.gz rockbox-6b559b1f976387a93f9ccc692eaea9dd8f9f5fc4.tar.bz2 rockbox-6b559b1f976387a93f9ccc692eaea9dd8f9f5fc4.tar.xz | |
scrollbar() parameters were swapped
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4859 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/jpeg.c')
| -rw-r--r-- | apps/plugins/jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c index 312fd82..4e47d9f 100644 --- a/apps/plugins/jpeg.c +++ b/apps/plugins/jpeg.c @@ -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); } |