summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-09-01 17:35:22 +0000
committerJens Arnold <amiconn@rockbox.org>2005-09-01 17:35:22 +0000
commit4172a009f626f032962085a981b7fc2accbdc2e4 (patch)
tree0d308df0c7707e7b2758ab766b5227746469d7dc
parent579210df87bdd803c96b335d83b817d3199ffad6 (diff)
downloadrockbox-4172a009f626f032962085a981b7fc2accbdc2e4.tar.gz
rockbox-4172a009f626f032962085a981b7fc2accbdc2e4.zip
Fixed wps codec type conditional.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7444 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/wps-display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index 43524d0189..d43c47b5c2 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -616,7 +616,7 @@ static char* get_tag(struct mp3entry* cid3,
616 return buf; 616 return buf;
617 617
618 case 'c': /* File Codec */ 618 case 'c': /* File Codec */
619 *intval = id3->codectype-1; 619 *intval = id3->codectype;
620 return id3_get_codec(id3); 620 return id3_get_codec(id3);
621 } 621 }
622 break; 622 break;