From 19ec4ffe6430fbdbf0e8fdf9bfe73f7b15bddc68 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Mon, 16 Nov 2009 01:38:36 +0000 Subject: [PATCH] Remove a left-over check for metadata info being ready that delayed the initial draw of the wps quite a bit (most notably on slowish hwcodec). The skin engine is safe against that, so draw it instantly and make another redraw once the metadata info is ready. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23646 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/wps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/gui/wps.c b/apps/gui/wps.c index d0e1b6f397..757160a586 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -1162,7 +1162,7 @@ long gui_wps_show(void) } - if (restore && wps_state.id3 && + if (restore && ((restoretimer == RESTORE_WPS_INSTANTLY) || TIME_AFTER(current_tick, restoretimer))) {