summaryrefslogtreecommitdiff
path: root/apps/plugins/logo.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/logo.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/logo.c')
-rw-r--r--apps/plugins/logo.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index 168e68cbb9..408588e6c1 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -312,12 +312,10 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) {
312#else 312#else
313 if (cpos != old_cpos) { 313 if (cpos != old_cpos) {
314 rb->lcd_clear_display(); 314 rb->lcd_clear_display();
315 pgfx_update();
316 pgfx_display(cpos, 0); 315 pgfx_display(cpos, 0);
317 old_cpos = cpos; 316 old_cpos = cpos;
318 } 317 }
319 else 318 pgfx_update();
320 pgfx_update();
321#endif 319#endif
322 rb->sleep(HZ/timer); 320 rb->sleep(HZ/timer);
323 321