diff options
| -rw-r--r-- | apps/plugins/jpeg.c | 2 | ||||
| -rw-r--r-- | apps/plugins/video.c | 2 |
2 files changed, 2 insertions, 2 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); } diff --git a/apps/plugins/video.c b/apps/plugins/video.c index eec600b..c1ce149 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -238,7 +238,7 @@ void DrawPosition(int pos, int total) /* draw a slider over the rest of the line */ rb->lcd_getstringsize(gPrint, &w, &h); w++; - rb->scrollbar(w, LCD_HEIGHT-7, LCD_WIDTH-w, 7, 0, total, pos, HORIZONTAL); + rb->scrollbar(w, LCD_HEIGHT-7, LCD_WIDTH-w, 7, total, 0, pos, HORIZONTAL); if (gPlay.state == paused) // we have to draw ourselves rb->lcd_update_rect(0, LCD_HEIGHT-8, LCD_WIDTH, 8); |