diff options
author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
---|---|---|
committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
commit | e991beed6df8700b41796c4c14ef786f45fb54c5 (patch) | |
tree | 63543693276236f18a91c3de87e2353625eb85dc /apps/sound_menu.c | |
parent | 76b75efa060b55bc7cbf66bae3401af57d907440 (diff) |
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/sound_menu.c')
-rw-r--r-- | apps/sound_menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c index 833dea53b9..f2d92d6df6 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -42,6 +42,7 @@ #include "peakmeter.h" #include "mas.h" #endif +#include "splash.h" int selected_setting; /* Used by the callback */ void dec_sound_formatter(char *buffer, int buffer_size, int val, const char * unit) @@ -610,7 +611,7 @@ bool rectrigger(void) switch (button) { case TRIG_CANCEL: - splash(50, true, str(LANG_RESET_DONE_CANCEL)); + gui_syncsplash(50, true, str(LANG_RESET_DONE_CANCEL)); global_settings.rec_start_thres = old_start_thres; global_settings.rec_start_duration = old_start_duration; global_settings.rec_prerecord_time = old_prerecord_time; |