diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-09-12 09:20:03 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-09-12 09:20:03 +0000 |
commit | 174f4945f33fb23295559cc77c0763819411c3e3 (patch) | |
tree | f5ebdb1ce4972c9233f6fcf74084de3a77700737 | |
parent | e9d5127eaaa0053467da0e5fc46cf6a5cd7637e0 (diff) |
adi is stupid improvements
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2266 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index d9c56b62b1..b73aaa85c7 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -303,7 +303,7 @@ void add_indices_to_playlist(void) int i = 0; int count = 0; int next_tick = current_tick + HZ; - bool store_index = true; + bool store_index; unsigned char *p = playlist_buffer; char line[16]; @@ -338,7 +338,7 @@ void add_indices_to_playlist(void) } else if(store_index) { - store_index = false; + store_index = false; if(playlist.in_ram || (*p != '#')) { |