summaryrefslogtreecommitdiff
path: root/apps/wps.c
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
commite991beed6df8700b41796c4c14ef786f45fb54c5 (patch)
tree63543693276236f18a91c3de87e2353625eb85dc /apps/wps.c
parent76b75efa060b55bc7cbf66bae3401af57d907440 (diff)
downloadrockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz
rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip
replaced all the splash calls by gui_sync_splash, added some missing remote key in the playlist viewer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7909 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps.c')
-rw-r--r--apps/wps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 31fcd2cb6d..95048bb8d0 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -80,7 +80,7 @@ static bool setvol(void)
80 wps_refresh(id3, nid3, 0, WPS_REFRESH_NON_STATIC); 80 wps_refresh(id3, nid3, 0, WPS_REFRESH_NON_STATIC);
81 settings_save(); 81 settings_save();
82#ifdef HAVE_LCD_CHARCELLS 82#ifdef HAVE_LCD_CHARCELLS
83 splash(0, false, "Vol: %d %% ", 83 gui_syncsplash(0, false, "Vol: %d %% ",
84 sound_val2phys(SOUND_VOLUME, global_settings.volume)); 84 sound_val2phys(SOUND_VOLUME, global_settings.volume));
85 return true; 85 return true;
86#endif 86#endif
@@ -315,7 +315,7 @@ static void display_keylock_text(bool locked)
315 else 315 else
316 s = str(LANG_KEYLOCK_OFF_RECORDER); 316 s = str(LANG_KEYLOCK_OFF_RECORDER);
317#endif 317#endif
318 splash(HZ, true, s); 318 gui_syncsplash(HZ, true, s);
319} 319}
320 320
321static void waitfor_nokey(void) 321static void waitfor_nokey(void)