From 66530722928b5e3c9870feb121c261e138807492 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Mon, 23 Jun 2008 02:57:24 +0000 Subject: bah, fix yellow git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17758 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps-common.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index f5ef604498..634d199461 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -104,8 +104,10 @@ void fade(bool fade_in, bool updatewps) fp_volume += fp_step; sound_set_volume(fp_volume >> 8); if (updatewps) + { FOR_NB_SCREENS(i) gui_wps_refresh(&gui_wps[i], 0, WPS_REFRESH_NON_STATIC); + } sleep(1); } sound_set_volume(global_settings.volume); @@ -118,8 +120,10 @@ void fade(bool fade_in, bool updatewps) fp_volume -= fp_step; sound_set_volume(fp_volume >> 8); if (updatewps) + { FOR_NB_SCREENS(i) gui_wps_refresh(&gui_wps[i], 0, WPS_REFRESH_NON_STATIC); + } sleep(1); } audio_pause(); -- cgit v1.2.3