diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-06-27 11:36:37 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-06-27 11:36:37 +0000 |
commit | b5a26851e002d090e9c6ae93e29857ca3cd63fe5 (patch) | |
tree | 463485c9a5398b21017f9b3d2f563da384dc8d9c /apps/plugins/text_viewer/tv_preferences.c | |
parent | 96233f9cf7d0a407f1512ec5312168d222c26405 (diff) |
text viewer: display functions more changes.
- font functions move to tv_display.
- modify tv_init_display() and add tv_finalize_display().
- viewport functions are changed from global to static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27154 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_viewer/tv_preferences.c')
-rw-r--r-- | apps/plugins/text_viewer/tv_preferences.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/text_viewer/tv_preferences.c b/apps/plugins/text_viewer/tv_preferences.c index a90c72d8e9..924cedb0d0 100644 --- a/apps/plugins/text_viewer/tv_preferences.c +++ b/apps/plugins/text_viewer/tv_preferences.c @@ -30,7 +30,7 @@ const struct tv_preferences * const preferences = &prefs; static int listner_count = 0; -#define TV_MAX_LISTNERS 4 +#define TV_MAX_LISTNERS 5 static void (*listners[TV_MAX_LISTNERS])(const struct tv_preferences *oldp); static void tv_notify_change_preferences(const struct tv_preferences *oldp) |