summaryrefslogtreecommitdiff
path: root/apps/plugins/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/video.c')
-rw-r--r--apps/plugins/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c
index e82ec1a84f..5891740bfa 100644
--- a/apps/plugins/video.c
+++ b/apps/plugins/video.c
@@ -27,7 +27,6 @@
27#include "plugin.h" 27#include "plugin.h"
28#include "sh7034.h" 28#include "sh7034.h"
29#include "system.h" 29#include "system.h"
30#include "../apps/recorder/widgets.h" /* not in search path, booh */
31 30
32#ifndef SIMULATOR /* not for simulator by now */ 31#ifndef SIMULATOR /* not for simulator by now */
33#ifdef HAVE_LCD_BITMAP /* and definitely not for the Player, haha */ 32#ifdef HAVE_LCD_BITMAP /* and definitely not for the Player, haha */
@@ -256,7 +255,8 @@ void DrawPosition(int pos, int total)
256 /* draw a slider over the rest of the line */ 255 /* draw a slider over the rest of the line */
257 rb->lcd_getstringsize(gPrint, &w, &h); 256 rb->lcd_getstringsize(gPrint, &w, &h);
258 w++; 257 w++;
259 rb->scrollbar(w, LCD_HEIGHT-7, LCD_WIDTH-w, 7, total, 0, pos, HORIZONTAL); 258 rb->gui_scrollbar_draw(&rb->screens[SCREEN_MAIN],w, LCD_HEIGHT-7, LCD_WIDTH-w,
259 7, total, 0, pos, HORIZONTAL);
260 260
261 if (gPlay.state == paused) /* we have to draw ourselves */ 261 if (gPlay.state == paused) /* we have to draw ourselves */
262 rb->lcd_update_rect(0, LCD_HEIGHT-8, LCD_WIDTH, 8); 262 rb->lcd_update_rect(0, LCD_HEIGHT-8, LCD_WIDTH, 8);