summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/talk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 09d1727571..3dda67a040 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -211,9 +211,9 @@ static void mp3_callback(unsigned char** start, int* size)
211 sent = MIN(queue[queue_read].len, 0xFFFF); 211 sent = MIN(queue[queue_read].len, 0xFFFF);
212 *start = p_lastclip = queue[queue_read].buf; 212 *start = p_lastclip = queue[queue_read].buf;
213 *size = sent; 213 *size = sent;
214 curr_hd[0] = *start[1]; 214 curr_hd[0] = (*start)[1];
215 curr_hd[1] = *start[2]; 215 curr_hd[1] = (*start)[2];
216 curr_hd[2] = *start[3]; 216 curr_hd[2] = (*start)[3];
217 } 217 }
218 else if (silence_add && p_silence != NULL /* want and can add silence */ 218 else if (silence_add && p_silence != NULL /* want and can add silence */
219 && p_lastclip < p_thumbnail) /* and wasn't playing thumbnail file */ 219 && p_lastclip < p_thumbnail) /* and wasn't playing thumbnail file */