summaryrefslogtreecommitdiff
path: root/apps/plugins/properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r--apps/plugins/properties.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 0fa83c0b56..5e2ab5101c 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -34,6 +34,7 @@ char str_time[64];
34 34
35char str_title[MAX_PATH]; 35char str_title[MAX_PATH];
36char str_artist[MAX_PATH]; 36char str_artist[MAX_PATH];
37char str_albumartist[MAX_PATH];
37char str_album[MAX_PATH]; 38char str_album[MAX_PATH];
38char str_duration[32]; 39char str_duration[32];
39 40
@@ -52,6 +53,7 @@ static const unsigned char* const props_file[] =
52 ID2P(LANG_PROPERTIES_DATE), str_date, 53 ID2P(LANG_PROPERTIES_DATE), str_date,
53 ID2P(LANG_PROPERTIES_TIME), str_time, 54 ID2P(LANG_PROPERTIES_TIME), str_time,
54 ID2P(LANG_PROPERTIES_ARTIST), str_artist, 55 ID2P(LANG_PROPERTIES_ARTIST), str_artist,
56 ID2P(LANG_PROPERTIES_ALBUMARTIST), str_albumartist,
55 ID2P(LANG_PROPERTIES_TITLE), str_title, 57 ID2P(LANG_PROPERTIES_TITLE), str_title,
56 ID2P(LANG_PROPERTIES_ALBUM), str_album, 58 ID2P(LANG_PROPERTIES_ALBUM), str_album,
57 ID2P(LANG_PROPERTIES_DURATION), str_duration, 59 ID2P(LANG_PROPERTIES_DURATION), str_duration,
@@ -119,11 +121,13 @@ static bool file_properties(const char* selected_file)
119 long dur = id3.length / 1000; /* seconds */ 121 long dur = id3.length / 1000; /* seconds */
120 rb->snprintf(str_artist, sizeof str_artist, 122 rb->snprintf(str_artist, sizeof str_artist,
121 "%s", id3.artist ? id3.artist : ""); 123 "%s", id3.artist ? id3.artist : "");
124 rb->snprintf(str_albumartist, sizeof str_albumartist,
125 "%s", id3.albumartist ? id3.albumartist : "");
122 rb->snprintf(str_title, sizeof str_title, 126 rb->snprintf(str_title, sizeof str_title,
123 "%s", id3.title ? id3.title : ""); 127 "%s", id3.title ? id3.title : "");
124 rb->snprintf(str_album, sizeof str_album, 128 rb->snprintf(str_album, sizeof str_album,
125 "%s", id3.album ? id3.album : ""); 129 "%s", id3.album ? id3.album : "");
126 num_properties += 3; 130 num_properties += 4;
127 131
128 if (dur > 0) 132 if (dur > 0)
129 { 133 {