diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-04-06 22:55:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-06 22:55:00 +0000 |
| commit | f9b90e91031dbd23fed24e832de4d8d2e15151a0 (patch) | |
| tree | 964a492f1c4a658ec0ecb82d100ce62d2f6ec93a /apps/plugins/viewer.c | |
| parent | a5d7309d96cca974e1524dc746482ab2a26d7395 (diff) | |
| download | rockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.zip rockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.tar.gz rockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.tar.bz2 rockbox-f9b90e91031dbd23fed24e832de4d8d2e15151a0.tar.xz | |
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/viewer.c')
| -rw-r--r-- | apps/plugins/viewer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index 4c5e37e..0243d0e 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -932,12 +932,12 @@ static void viewer_draw(int col) if (prefs.need_scrollbar) viewer_scrollbar(); - - if (col != -1) - rb->lcd_update(); #else next_screen_to_draw_ptr = next_screen_ptr; #endif + + if (col != -1) + rb->lcd_update(); } static void viewer_top(void) |