summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-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}