summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-08-07 08:59:55 +0000
committerJens Arnold <amiconn@rockbox.org>2006-08-07 08:59:55 +0000
commitd55503d80b155415b34e4bf36543c1f40d1b881f (patch)
tree17212dc7936055ea392ead4a518d0059835f0b60 /apps
parentad9c9cc6516f7a80e2077ae53c930c665031886d (diff)
downloadrockbox-d55503d80b155415b34e4bf36543c1f40d1b881f.tar.gz
rockbox-d55503d80b155415b34e4bf36543c1f40d1b881f.zip
We can run the grayscale lib at full frame rate on iPods...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10471 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/gray_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lib/gray_core.c b/apps/plugins/lib/gray_core.c
index 679d52130d..c253a7112e 100644
--- a/apps/plugins/lib/gray_core.c
+++ b/apps/plugins/lib/gray_core.c
@@ -544,9 +544,9 @@ void gray_show(bool enable)
_gray_rb->timer_register(1, NULL, TIMER_FREQ / 70, 1, _timer_isr);
#elif CONFIG_LCD == LCD_IPOD2BPP
/* FIXME: verify value */
- _gray_rb->timer_register(1, NULL, TIMER_FREQ / 40, 1, _timer_isr);
+ _gray_rb->timer_register(1, NULL, TIMER_FREQ / 80, 1, _timer_isr);
#elif CONFIG_LCD == LCD_IPODMINI
- _gray_rb->timer_register(1, NULL, TIMER_FREQ / 44, 1, _timer_isr);
+ _gray_rb->timer_register(1, NULL, TIMER_FREQ / 88, 1, _timer_isr);
#elif CONFIG_LCD == LCD_IFP7XX
(void)_timer_isr; /* TODO: implement for iFP */
#endif /* CONFIG_LCD */