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:
parent
cfdbbc4914
commit
ea5d196c7b
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue