summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 00c4572720..4d86f0c55d 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -50,6 +50,7 @@
50#include "buffer.h" 50#include "buffer.h"
51#include "dsp.h" 51#include "dsp.h"
52#include "abrepeat.h" 52#include "abrepeat.h"
53#include "tagcache.h"
53#ifdef HAVE_LCD_BITMAP 54#ifdef HAVE_LCD_BITMAP
54#include "icons.h" 55#include "icons.h"
55#include "peakmeter.h" 56#include "peakmeter.h"
@@ -2132,8 +2133,8 @@ struct mp3entry* audio_current_track(void)
2132 if (!filename) 2133 if (!filename)
2133 filename = "No file!"; 2134 filename = "No file!";
2134 2135
2135 // if (tagcache_fill_tags(&temp_id3, filename)) 2136 if (tagcache_fill_tags(&temp_id3, filename))
2136 // return &temp_id3; 2137 return &temp_id3;
2137 2138
2138 p = strrchr(filename, '/'); 2139 p = strrchr(filename, '/');
2139 if (!p) 2140 if (!p)