Ok...really fix the red. :)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15993 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-01-03 17:51:25 +00:00
parent d9a895599e
commit dff0deb48c

View file

@ -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
}