summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-21 15:04:48 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-21 15:04:48 +0000
commit6050e86643b39159f1fbdb357dd6387c086180df (patch)
tree6972648d02747f33582106487e17bf058ff63014
parentc42644d2f40f85b0b33e9c44749860b790add047 (diff)
downloadrockbox-6050e86643b39159f1fbdb357dd6387c086180df.tar.gz
rockbox-6050e86643b39159f1fbdb357dd6387c086180df.zip
Removed indexing bug
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@649 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tree.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/tree.c b/apps/tree.c
index d8dc779d43..8dd507412f 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -326,10 +326,6 @@ bool dirbrowse(char *root)
326 lcd_setmargins(0,MARGIN_Y); 326 lcd_setmargins(0,MARGIN_Y);
327 lcd_setfont(0); 327 lcd_setfont(0);
328#endif 328#endif
329 if ( dirlevel < MAX_DIR_LEVELS )
330 start = dirpos[dirlevel];
331 else
332 start = 0;
333 numentries = showdir(currdir, buffer, 0, start, &at_end); 329 numentries = showdir(currdir, buffer, 0, start, &at_end);
334 dircursor=0; 330 dircursor=0;
335 while ( (dircursor < TREE_MAX_ON_SCREEN) && 331 while ( (dircursor < TREE_MAX_ON_SCREEN) &&