summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/video_out_rockbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/video_out_rockbox.c')
-rw-r--r--apps/plugins/mpegplayer/video_out_rockbox.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c
index ee0efb8824..cf47982ab7 100644
--- a/apps/plugins/mpegplayer/video_out_rockbox.c
+++ b/apps/plugins/mpegplayer/video_out_rockbox.c
@@ -86,16 +86,16 @@ static void vo_draw_black(void)
86 86
87 video_lock(); 87 video_lock();
88 88
89 foreground = lcd_(get_foreground)(); 89 foreground = mylcd_get_foreground();
90 90
91 lcd_(set_foreground)(DRAW_BLACK); 91 mylcd_set_foreground(MYLCD_BLACK);
92 92
93 lcd_(fillrect)(vo.output_x, vo.output_y, vo.output_width, 93 mylcd_fillrect(vo.output_x, vo.output_y, vo.output_width,
94 vo.output_height); 94 vo.output_height);
95 lcd_(update_rect)(vo.output_x, vo.output_y, vo.output_width, 95 mylcd_update_rect(vo.output_x, vo.output_y, vo.output_width,
96 vo.output_height); 96 vo.output_height);
97 97
98 lcd_(set_foreground)(foreground); 98 mylcd_set_foreground(foreground);
99 99
100 video_unlock(); 100 video_unlock();
101} 101}