1
0
Fork 0
forked from len0rd/rockbox

Fully clone the gray_show(false) procedure without the forced lcd update.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16048 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-01-10 19:38:38 +00:00
parent cfdbbc4914
commit ea5d196c7b

View file

@ -742,7 +742,11 @@ void stream_gray_pause(bool pause)
if (_grey_info.flags & _GREY_RUNNING)
{
rb->timer_unregister();
#if defined(CPU_PP) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
rb->cpu_boost(false);
#endif
_grey_info.flags &= ~_GREY_RUNNING;
rb->screen_dump_set_hook(NULL);
gray_paused = true;
}
}
@ -754,7 +758,7 @@ void stream_gray_pause(bool pause)
}
#endif
#endif
#endif /* !HAVE_LCD_COLOR */
/* Display a thumbnail at the last seek point */
bool stream_display_thumb(const struct vo_rect *rc)