diff options
author | Thom Johansen <thomj@rockbox.org> | 2007-09-19 10:40:55 +0000 |
---|---|---|
committer | Thom Johansen <thomj@rockbox.org> | 2007-09-19 10:40:55 +0000 |
commit | 294ec1d110178f30894721d5cda14c246333954d (patch) | |
tree | 2e31dc287557007939b3b5abf4493fa02946b6c5 /apps/plugins/properties.c | |
parent | 547cffb90bffacc7f22e6661c61ccad830ce2c91 (diff) | |
download | rockbox-294ec1d110178f30894721d5cda14c246333954d.tar.gz rockbox-294ec1d110178f30894721d5cda14c246333954d.tar.bz2 rockbox-294ec1d110178f30894721d5cda14c246333954d.zip |
Remove the ID3 tag version priority setting on the grounds of it being pretty pointless. ID3v2 tags are superior to ID3v1 tags, and needs less seeking around to find.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14750 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r-- | apps/plugins/properties.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index ca18d49f50..0811b00ed3 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -100,9 +100,9 @@ static bool file_properties(char* selected_file) #if (CONFIG_CODEC == SWCODEC) int fd = rb->open(selected_file, O_RDONLY); if (fd >= 0 && - rb->get_metadata(&id3, fd, selected_file, false)) + rb->get_metadata(&id3, fd, selected_file)) #else - if (!rb->mp3info(&id3, selected_file, false)) + if (!rb->mp3info(&id3, selected_file)) #endif { rb->snprintf(str_artist, sizeof str_artist, |