summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-09-12 09:20:03 +0000
committerRobert Hak <adiamas@rockbox.org>2002-09-12 09:20:03 +0000
commit174f4945f33fb23295559cc77c0763819411c3e3 (patch)
treef5ebdb1ce4972c9233f6fcf74084de3a77700737 /apps
parente9d5127eaaa0053467da0e5fc46cf6a5cd7637e0 (diff)
downloadrockbox-174f4945f33fb23295559cc77c0763819411c3e3.tar.gz
rockbox-174f4945f33fb23295559cc77c0763819411c3e3.zip
adi is stupid improvements
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2266 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/playlist.c4
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)
303 int i = 0; 303 int i = 0;
304 int count = 0; 304 int count = 0;
305 int next_tick = current_tick + HZ; 305 int next_tick = current_tick + HZ;
306 bool store_index = true; 306 bool store_index;
307 307
308 unsigned char *p = playlist_buffer; 308 unsigned char *p = playlist_buffer;
309 char line[16]; 309 char line[16];
@@ -338,7 +338,7 @@ void add_indices_to_playlist(void)
338 } 338 }
339 else if(store_index) 339 else if(store_index)
340 { 340 {
341 store_index = false; 341 store_index = false;
342 342
343 if(playlist.in_ram || (*p != '#')) 343 if(playlist.in_ram || (*p != '#'))
344 { 344 {