diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-04-26 16:24:12 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-04-26 16:24:12 -0400 |
commit | 97a535d83c0f057b190c7a82f95297696b25a0df (patch) | |
tree | 7297cce0f3cda43942725d65122be3c6c9255371 /apps/voice_thread.c | |
parent | 3c391ad51b24383cb75f171355ca42a66b6b2bc9 (diff) |
Oops, Shoulda been "int16_t" not "uint16_t".
Change-Id: Ic2a54e9f283acb1c362857a3f1422ed3c532249f
Diffstat (limited to 'apps/voice_thread.c')
-rw-r--r-- | apps/voice_thread.c | 2 |
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) } /* Grab a free PCM frame */ -static uint16_t * voice_buf_get(void) +static int16_t * voice_buf_get(void) { if (voice_unplayed_frames() >= VOICE_FRAMES) { |