diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-04-04 19:38:46 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-04-04 19:38:46 +0000 |
| commit | ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9 (patch) | |
| tree | b327ea00d2320464d5022b63690032ec31b55f47 /apps/plugins/lib | |
| parent | 3183b9e534eba4ca07ffaa68895e63177b5d8761 (diff) | |
| download | rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.zip rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.gz rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.bz2 rockbox-ac9b92716a11cf7699f6ce9668b1ca5cd4171cf9.tar.xz | |
Allow to select the core for running the user timer on portalplayer targets. * Incompatible plugin API change -> sorted API.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16965 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/grey_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c index 5125d77..20c33a6 100644 --- a/apps/plugins/lib/grey_core.c +++ b/apps/plugins/lib/grey_core.c @@ -603,7 +603,7 @@ void grey_show(bool enable) _grey_info.rb->cpu_boost(true); #endif _grey_info.rb->timer_register(1, NULL, TIMER_FREQ / LCD_SCANRATE, 1, - _timer_isr); + _timer_isr IF_COP(, CPU)); #endif /* !SIMULATOR */ _grey_info.rb->screen_dump_set_hook(grey_screendump_hook); } |