From 4b97437c23b18cb31e69e623b0dc726c77ef4cd3 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Thu, 24 May 2012 20:47:40 -0400 Subject: Correct snafu in talk.c When allocating the voice buffer, it's supposed to start at the beginning of the audio buffer, not at the end of the voice buffer. ;-D Might clear up a thing or two. Change-Id: I94796ff21090bcc56813cdc569957a1a9178abcd --- apps/talk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/talk.c') diff --git a/apps/talk.c b/apps/talk.c index f3ca967d3a..3634ecfe08 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -626,7 +626,7 @@ static bool restore_state(void) { size_t size; audio_restore_playback(AUDIO_WANT_VOICE); - voicebuf = audio_get_buffer(false, &size); + voicebuf = audio_get_buffer(true, &size); } return !!voicebuf; -- cgit v1.2.3