summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2007-10-19 15:31:42 +0000
committerSteve Bavin <pondlife@pondlife.me>2007-10-19 15:31:42 +0000
commit32a95751301a4aa5f51ea76b7eb3764d197dd6e3 (patch)
tree860d5e0c767cc53d038bb72ff19c237215dd3eee /apps/playback.c
parent877ea486bad40bde6f8b969acc8af50f244884c0 (diff)
downloadrockbox-32a95751301a4aa5f51ea76b7eb3764d197dd6e3.tar.gz
rockbox-32a95751301a4aa5f51ea76b7eb3764d197dd6e3.zip
FS#7994 - Rename talk.c API, make talk_disable() affect all talking (not just menus), hopefully save some space.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15206 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index c0a8c5ade0..5443ef5b24 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -677,7 +677,7 @@ void audio_play(long offset)
677#ifdef PLAYBACK_VOICE 677#ifdef PLAYBACK_VOICE
678 /* Truncate any existing voice output so we don't have spelling 678 /* Truncate any existing voice output so we don't have spelling
679 * etc. over the first part of the played track */ 679 * etc. over the first part of the played track */
680 do_shutup(); 680 talk_force_shutup();
681#endif 681#endif
682 682
683 /* Start playback */ 683 /* Start playback */
@@ -960,7 +960,7 @@ static void voice_stop(void)
960 if (!voice_codec_loaded) 960 if (!voice_codec_loaded)
961 return; 961 return;
962 962
963 do_shutup(); 963 talk_force_shutup();
964 964
965 /* Loop until voice empties it's queue, stops and picks up on the new 965 /* Loop until voice empties it's queue, stops and picks up on the new
966 track; the voice thread must be stopped and waiting for messages 966 track; the voice thread must be stopped and waiting for messages