From dff0deb48c6252dfc10599124afc3110ff89f73a Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Thu, 3 Jan 2008 17:51:25 +0000 Subject: Ok...really fix the red. :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15993 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/mpegplayer/video_out_rockbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins') 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) 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 } -- cgit v1.2.3