summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer
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/mpegplayer
parentd9a895599ecc3d74684e546c730842283255b24e (diff)
downloadrockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.zip
rockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.tar.gz
rockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.tar.bz2
rockbox-dff0deb48c6252dfc10599124afc3110ff89f73a.tar.xz
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/mpegplayer')
-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 239d327..39d0e82 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)
void vo_lock(void)
{
/* TODO: evaluate synchronization with graylib in the sim */
-#ifndef HAVE_LCD_COLOR && !defined(SIMULATOR)
+#if !defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
set_irq_level(HIGHEST_IRQ_LEVEL);
#endif
video_lock();
@@ -516,7 +516,7 @@ void vo_lock(void)
void vo_unlock(void)
{
video_unlock();
-#ifndef HAVE_LCD_COLOR && !defined(SIMULATOR)
+#if !defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
set_irq_level(0);
#endif
}