diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2005-10-21 07:25:19 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-10-21 07:25:19 +0000 |
| commit | 56bb45cfaf3c94da324cd78925e785d2e3655326 (patch) | |
| tree | 2041bb1f91eaae1409558da50f360ab7405174c2 /apps | |
| parent | c52f7f1b5e02b48272037f7e82d1af43cea74b1d (diff) | |
| download | rockbox-56bb45cfaf3c94da324cd78925e785d2e3655326.zip rockbox-56bb45cfaf3c94da324cd78925e785d2e3655326.tar.gz rockbox-56bb45cfaf3c94da324cd78925e785d2e3655326.tar.bz2 rockbox-56bb45cfaf3c94da324cd78925e785d2e3655326.tar.xz | |
We reserved two bits instead of one bit for the new skipped attribute.
Fixed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7648 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 91eacb7..2646a27 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -116,7 +116,7 @@ 0 = Track entry is valid 1 = Track does not exist on disk and should be skipped */ -#define PLAYLIST_SEEK_MASK 0x07FFFFFF +#define PLAYLIST_SEEK_MASK 0x0FFFFFFF #define PLAYLIST_INSERT_TYPE_MASK 0xC0000000 #define PLAYLIST_QUEUE_MASK 0x20000000 |