Dont redraw the AA every single update, only when needed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27719 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e8542efdb1
commit
f3a6d2476a
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ static bool do_non_text_tags(struct gui_wps *gwps, struct skin_draw_info *info,
|
|||
#ifdef HAVE_ALBUMART
|
||||
case SKIN_TOKEN_ALBUMART_DISPLAY:
|
||||
/* now draw the AA */
|
||||
if (data->albumart)
|
||||
if (do_refresh && data->albumart)
|
||||
{
|
||||
int handle = playback_current_aa_hid(data->playback_aa_slot);
|
||||
#if CONFIG_TUNER
|
||||
|
|
Loading…
Reference in a new issue