summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-07-15 23:33:29 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-07-20 07:27:01 -0400
commit7e90760a48a0dcd0e6d7133022ffb1736083dd46 (patch)
tree6f67f1a66b7c4b65a767ee078971b20ac6ab2a79 /apps/gui
parent072228bb70c71bd05eff848d15c36d7f540972b3 (diff)
downloadrockbox-7e90760a48a0dcd0e6d7133022ffb1736083dd46.tar.gz
rockbox-7e90760a48a0dcd0e6d7133022ffb1736083dd46.zip
[Feature] Playlis to cue plugin
generate valid cue files from a playlist uses remarks to store extra id3 info and display and playlist index Change-Id: I00c9f6389445bb601dde6eb8f36157044024f8cb
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_tokens.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c
index ba9396ae74..082619432f 100644
--- a/apps/gui/skin_engine/skin_tokens.c
+++ b/apps/gui/skin_engine/skin_tokens.c
@@ -74,7 +74,7 @@
74static const char* get_codectype(const struct mp3entry* id3) 74static const char* get_codectype(const struct mp3entry* id3)
75{ 75{
76 if (id3 && id3->codectype < AFMT_NUM_CODECS) { 76 if (id3 && id3->codectype < AFMT_NUM_CODECS) {
77 return audio_formats[id3->codectype].label; 77 return get_codec_string(id3->codectype);
78 } else { 78 } else {
79 return NULL; 79 return NULL;
80 } 80 }