diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-09-01 17:35:22 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-09-01 17:35:22 +0000 |
| commit | 4172a009f626f032962085a981b7fc2accbdc2e4 (patch) | |
| tree | 0d308df0c7707e7b2758ab766b5227746469d7dc /apps | |
| parent | 579210df87bdd803c96b335d83b817d3199ffad6 (diff) | |
| download | rockbox-4172a009f626f032962085a981b7fc2accbdc2e4.zip rockbox-4172a009f626f032962085a981b7fc2accbdc2e4.tar.gz rockbox-4172a009f626f032962085a981b7fc2accbdc2e4.tar.bz2 rockbox-4172a009f626f032962085a981b7fc2accbdc2e4.tar.xz | |
Fixed wps codec type conditional.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7444 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/wps-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c index 43524d0..d43c47b 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -616,7 +616,7 @@ static char* get_tag(struct mp3entry* cid3, return buf; case 'c': /* File Codec */ - *intval = id3->codectype-1; + *intval = id3->codectype; return id3_get_codec(id3); } break; |