summaryrefslogtreecommitdiff
path: root/firmware/id3.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/id3.c')
-rw-r--r--firmware/id3.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/id3.c b/firmware/id3.c
index 1188da9fd6..8a1c3e53dc 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -1035,10 +1035,12 @@ void adjust_mp3entry(struct mp3entry *entry, void *dest, void *orig)
1035 entry->year_string += offset; 1035 entry->year_string += offset;
1036 if (entry->composer) 1036 if (entry->composer)
1037 entry->composer += offset; 1037 entry->composer += offset;
1038#if CONFIG_CODEC == SWCODEC
1038 if (entry->track_gain_string) 1039 if (entry->track_gain_string)
1039 entry->track_gain_string += offset; 1040 entry->track_gain_string += offset;
1040 if (entry->album_gain_string) 1041 if (entry->album_gain_string)
1041 entry->album_gain_string += offset; 1042 entry->album_gain_string += offset;
1043#endif
1042} 1044}
1043 1045
1044void copy_mp3entry(struct mp3entry *dest, struct mp3entry *orig) 1046void copy_mp3entry(struct mp3entry *dest, struct mp3entry *orig)