diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-12 08:06:13 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-12 08:06:13 +0000 |
| commit | 3d762e9728c770e54dfeb5e81250282b51a59f61 (patch) | |
| tree | 1e13e897ae6545b168e64b1a8131fb760ff8fc51 | |
| parent | 0e6850f3ceb7e0f6c80a810c35dfcc65b140b42a (diff) | |
| download | rockbox-3d762e9728c770e54dfeb5e81250282b51a59f61.zip rockbox-3d762e9728c770e54dfeb5e81250282b51a59f61.tar.gz rockbox-3d762e9728c770e54dfeb5e81250282b51a59f61.tar.bz2 rockbox-3d762e9728c770e54dfeb5e81250282b51a59f61.tar.xz | |
Fixed scroll screen garbage bug
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@970 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 4e408b1..adb07e1 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -128,6 +128,7 @@ static int showdir(char *path, int start) qsort(dircacheptr,filesindir,sizeof(struct entry*),compare); } + lcd_stop_scroll(); #ifdef HAVE_NEW_CHARCELL_LCD lcd_double_height(false); #endif @@ -266,7 +267,6 @@ bool dirbrowse(char *root) } else start = dircursor = 0; - lcd_stop_scroll(); numentries = showdir(currdir, start); lcd_puts(0, LINE_Y+dircursor, CURSOR_CHAR); } |