diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:14:42 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:14:42 +0000 |
| commit | c31d2f84b73b7f08f949cebcff0e5f4d1babd529 (patch) | |
| tree | a93d2b11e185f8bdc587c4ef1e80b8ed68f47f77 /apps/plugins/lib/gray_core.c | |
| parent | 3c17330af669c6c19b4b3b1fdcfc987e386679ce (diff) | |
| download | rockbox-c31d2f84b73b7f08f949cebcff0e5f4d1babd529.zip rockbox-c31d2f84b73b7f08f949cebcff0e5f4d1babd529.tar.gz rockbox-c31d2f84b73b7f08f949cebcff0e5f4d1babd529.tar.bz2 rockbox-c31d2f84b73b7f08f949cebcff0e5f4d1babd529.tar.xz | |
Fixed warnings on iFP.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8550 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/gray_core.c')
| -rw-r--r-- | apps/plugins/lib/gray_core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/lib/gray_core.c b/apps/plugins/lib/gray_core.c index f132d00..d151250 100644 --- a/apps/plugins/lib/gray_core.c +++ b/apps/plugins/lib/gray_core.c @@ -233,6 +233,9 @@ void gray_show(bool enable) _gray_rb->timer_register(1, NULL, CPU_FREQ / 67, 1, _timer_isr); #elif CONFIG_LCD == LCD_S1D15E06 _gray_rb->timer_register(1, NULL, CPU_FREQ / 70, 1, _timer_isr); +#elif CONFIG_LCD == LCD_IFP7XX + /* TODO: implement for iFP */ + (void)_timer_isr; #endif _gray_rb->screen_dump_set_hook(gray_screendump_hook); } |