summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-01-03 17:51:25 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-01-03 17:51:25 +0000
commitdff0deb48c6252dfc10599124afc3110ff89f73a (patch)
tree2f7a3fa90fbee567597bd33e00e2892d5d7a9a33 /apps/plugins
parentd9a895599ecc3d74684e546c730842283255b24e (diff)
downloadrockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.tar.gz
rockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.zip
Ok...really fix the red. :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15993 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mpegplayer/video_out_rockbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/video_out_rockbox.c b/apps/plugins/mpegplayer/video_out_rockbox.c
index 239d3270d6..39d0e82c3b 100644
--- a/apps/plugins/mpegplayer/video_out_rockbox.c
+++ b/apps/plugins/mpegplayer/video_out_rockbox.c
@@ -507,7 +507,7 @@ void vo_set_clip_rect(const struct vo_rect *rc)
507void vo_lock(void) 507void vo_lock(void)
508{ 508{
509/* TODO: evaluate synchronization with graylib in the sim */ 509/* TODO: evaluate synchronization with graylib in the sim */
510#ifndef HAVE_LCD_COLOR && !defined(SIMULATOR) 510#if !defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
511 set_irq_level(HIGHEST_IRQ_LEVEL); 511 set_irq_level(HIGHEST_IRQ_LEVEL);
512#endif 512#endif
513 video_lock(); 513 video_lock();
@@ -516,7 +516,7 @@ void vo_lock(void)
516void vo_unlock(void) 516void vo_unlock(void)
517{ 517{
518 video_unlock(); 518 video_unlock();
519#ifndef HAVE_LCD_COLOR && !defined(SIMULATOR) 519#if !defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
520 set_irq_level(0); 520 set_irq_level(0);
521#endif 521#endif
522} 522}