summaryrefslogtreecommitdiff
path: root/apps/metadata/nsf.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-04-27 03:08:23 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-04-27 03:08:23 +0000
commitc537d5958e8b421ac4f9bef6c8b9e7425a6cf167 (patch)
tree7ed36518fb6524da7bbd913ba7619b85b5d15d23 /apps/metadata/nsf.c
parentdcf0f8de4a37ff1d2ea510aef75fa67977a8bdcc (diff)
downloadrockbox-c537d5958e8b421ac4f9bef6c8b9e7425a6cf167.tar.gz
rockbox-c537d5958e8b421ac4f9bef6c8b9e7425a6cf167.zip
Commit FS#12069 - Playback rework - first stages. Gives as thorough as possible a treatment of codec management, track change and metadata logic as possible while maintaining fairly narrow focus and not rewriting everything all at once. Please see the rockbox-dev mail archive on 2011-04-25 (Playback engine rework) for a more thorough manifest of what was addressed. Plugins and codecs become incompatible.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29785 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata/nsf.c')
-rw-r--r--apps/metadata/nsf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/metadata/nsf.c b/apps/metadata/nsf.c
index abb4e6fd80..9207a14048 100644
--- a/apps/metadata/nsf.c
+++ b/apps/metadata/nsf.c
@@ -40,6 +40,9 @@ bool get_nsf_metadata(int fd, struct mp3entry* id3)
40 40
41 p = id3->id3v2buf; 41 p = id3->id3v2buf;
42 42
43 /* Length */
44 id3->length = buf[6]*1000;
45
43 /* Title */ 46 /* Title */
44 memcpy(p, &buf[14], 32); 47 memcpy(p, &buf[14], 32);
45 id3->title = p; 48 id3->title = p;