summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Linenberg <elinenbe@umich.edu>2003-02-25 16:22:10 +0000
committerEric Linenberg <elinenbe@umich.edu>2003-02-25 16:22:10 +0000
commit3b66990c2e54971fe552585d043c2f335c00bc08 (patch)
treed417c3bfd4bc96bcb38a731c9f2b0dba76e54dbc
parentcfbf3e252f3ff9dbbd382e372f250bdc554edaf5 (diff)
downloadrockbox-3b66990c2e54971fe552585d043c2f335c00bc08.tar.gz
rockbox-3b66990c2e54971fe552585d043c2f335c00bc08.zip
hopefully no loud sound at beginning of fade in. Brian King suggestion
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3336 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 81249e914e..1904387759 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -694,7 +694,7 @@ static void fade(bool fade_in)
694 mpeg_sound_set(SOUND_VOLUME, current_volume); 694 mpeg_sound_set(SOUND_VOLUME, current_volume);
695 } 695 }
696 mpeg_pause(); 696 mpeg_pause();
697 sleep(HZ/10); /* let mpeg thread run */ 697 sleep(HZ/5); /* let mpeg thread run */
698 698
699 /* reset volume to what it was before the fade */ 699 /* reset volume to what it was before the fade */
700 mpeg_sound_set(SOUND_VOLUME, global_settings.volume); 700 mpeg_sound_set(SOUND_VOLUME, global_settings.volume);