summaryrefslogtreecommitdiff
path: root/tools/songdb.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/songdb.pl')
-rwxr-xr-xtools/songdb.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/songdb.pl b/tools/songdb.pl
index 9ed0c541bf..202ab06401 100755
--- a/tools/songdb.pl
+++ b/tools/songdb.pl
@@ -9,7 +9,7 @@
9 9
10use vorbiscomm; 10use vorbiscomm;
11 11
12my $db = "rockbox.id3db"; 12my $db = "rockbox.tagdb";
13my $dir; 13my $dir;
14my $strip; 14my $strip;
15my $add; 15my $add;
@@ -626,7 +626,7 @@ if ($db) {
626 my $str = $f."\x00" x ($maxfilelen- length($f)); 626 my $str = $f."\x00" x ($maxfilelen- length($f));
627 my $id3 = $entries{$f}; 627 my $id3 = $entries{$f};
628 print DB $str; 628 print DB $str;
629 dumpint(0); 629 dumpint(0); # TODO: add hashing; 0 for now.
630 dumpint($id3->{'songoffset'}); 630 dumpint($id3->{'songoffset'});
631 dumpint(-1); 631 dumpint(-1);
632 } 632 }