summaryrefslogtreecommitdiff
path: root/apps/plugins/disktidy.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-06 22:55:00 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-06 22:55:00 +0000
commitf9b90e91031dbd23fed24e832de4d8d2e15151a0 (patch)
tree964a492f1c4a658ec0ecb82d100ce62d2f6ec93a /apps/plugins/disktidy.c
parenta5d7309d96cca974e1524dc746482ab2a26d7395 (diff)
downloadrockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.tar.gz
rockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.zip
Now charcell displays require lcd_update() for updating the main lcd content like bitmap displays.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13050 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/disktidy.c')
-rw-r--r--apps/plugins/disktidy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/disktidy.c b/apps/plugins/disktidy.c
index d1f40cf9f8..ca4fb9b830 100644
--- a/apps/plugins/disktidy.c
+++ b/apps/plugins/disktidy.c
@@ -87,8 +87,8 @@ void tidy_lcd_status(const char *name, int *removed)
87 rb->snprintf(text, 24, "Cleaned up %d items", *removed); 87 rb->snprintf(text, 24, "Cleaned up %d items", *removed);
88#ifdef HAVE_LCD_BITMAP 88#ifdef HAVE_LCD_BITMAP
89 rb->lcd_puts(0, 2, text); 89 rb->lcd_puts(0, 2, text);
90 rb->lcd_update();
91#endif 90#endif
91 rb->lcd_update();
92} 92}
93 93
94void tidy_get_absolute_path(struct dirent *entry, char *fullname, 94void tidy_get_absolute_path(struct dirent *entry, char *fullname,