diff options
author | Ben Basha <benbasha@rockbox.org> | 2006-01-27 13:37:06 +0000 |
---|---|---|
committer | Ben Basha <benbasha@rockbox.org> | 2006-01-27 13:37:06 +0000 |
commit | b7c29193f99537e4def128cc2dcf4d36edc5ac26 (patch) | |
tree | 1507b5e19075932985adc20ac6fb9979a6bd13a0 /apps/plugins/brickmania.c | |
parent | c3382909611e566773a3841c14e8fb46237bdc97 (diff) | |
download | rockbox-b7c29193f99537e4def128cc2dcf4d36edc5ac26.tar.gz rockbox-b7c29193f99537e4def128cc2dcf4d36edc5ac26.zip |
Remove calls to cpu_boost - they are not required any more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8469 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r-- | apps/plugins/brickmania.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c index 78d18a38d5..34f4b078f6 100644 --- a/apps/plugins/brickmania.c +++ b/apps/plugins/brickmania.c @@ -1186,9 +1186,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { (void)parameter; rb = api; -#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ) - rb->cpu_boost(true); -#endif bally=0; ballx=0; @@ -1205,9 +1202,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) /* Restore user's original backlight setting */ rb->backlight_set_timeout(rb->global_settings->backlight_timeout); -#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ) - rb->cpu_boost(false); -#endif - return PLUGIN_OK; } |