diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-03-08 20:46:53 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-03-08 20:46:53 +0000 |
| commit | ae31160c1a6ff74378b7066317eadc23c0137e63 (patch) | |
| tree | e9e33c18f99ce9b3f740c8e7d5408c90f4b57c2b /apps/plugins | |
| parent | 13138ae4f4737c1a861bb964de204fc8be6eea59 (diff) | |
| download | rockbox-ae31160c1a6ff74378b7066317eadc23c0137e63.zip rockbox-ae31160c1a6ff74378b7066317eadc23c0137e63.tar.gz rockbox-ae31160c1a6ff74378b7066317eadc23c0137e63.tar.bz2 rockbox-ae31160c1a6ff74378b7066317eadc23c0137e63.tar.xz | |
Fix fireworks adding another boost count on exit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16561 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/fireworks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/fireworks.c b/apps/plugins/fireworks.c index e0d491a..e233a8e 100644 --- a/apps/plugins/fireworks.c +++ b/apps/plugins/fireworks.c @@ -5,7 +5,7 @@ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ - * $Id: + * $Id$ * * Copyright (C) 2007 Zakk Roberts * @@ -542,7 +542,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) backlight_use_settings(rb); /* backlight control in lib/helper.c */ #ifdef HAVE_ADJUSTABLE_CPU_FREQ - rb->cpu_boost(true); + rb->cpu_boost(false); #endif return PLUGIN_OK; |