summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-04-26 16:24:12 -0400
committerMichael Sevakis <jethead71@rockbox.org>2012-04-26 16:24:12 -0400
commit97a535d83c0f057b190c7a82f95297696b25a0df (patch)
tree7297cce0f3cda43942725d65122be3c6c9255371
parent3c391ad51b24383cb75f171355ca42a66b6b2bc9 (diff)
downloadrockbox-97a535d83c0f057b190c7a82f95297696b25a0df.tar.gz
rockbox-97a535d83c0f057b190c7a82f95297696b25a0df.zip
Oops, Shoulda been "int16_t" not "uint16_t".
Change-Id: Ic2a54e9f283acb1c362857a3f1422ed3c532249f
-rw-r--r--apps/voice_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/voice_thread.c b/apps/voice_thread.c
index 3a2436c118..07a67256c4 100644
--- a/apps/voice_thread.c
+++ b/apps/voice_thread.c
@@ -182,7 +182,7 @@ static void voice_stop_playback(void)
182} 182}
183 183
184/* Grab a free PCM frame */ 184/* Grab a free PCM frame */
185static uint16_t * voice_buf_get(void) 185static int16_t * voice_buf_get(void)
186{ 186{
187 if (voice_unplayed_frames() >= VOICE_FRAMES) 187 if (voice_unplayed_frames() >= VOICE_FRAMES)
188 { 188 {