summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 08c98017e1..cdb787a0b0 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -38,6 +38,7 @@
38#include "mp3_playback.h" 38#include "mp3_playback.h"
39#include "backlight.h" 39#include "backlight.h"
40#include "ata.h" 40#include "ata.h"
41#include "talk.h"
41 42
42#ifdef HAVE_LCD_BITMAP 43#ifdef HAVE_LCD_BITMAP
43#include "widgets.h" 44#include "widgets.h"
@@ -325,6 +326,7 @@ void* plugin_get_mp3_buffer(int* buffer_size)
325 return buf; 326 return buf;
326#else 327#else
327 mpeg_stop(); 328 mpeg_stop();
329 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
328 *buffer_size = mp3end - mp3buf; 330 *buffer_size = mp3end - mp3buf;
329 return mp3buf; 331 return mp3buf;
330#endif 332#endif