summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/brickmania.c7
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)
1186{ 1186{
1187 (void)parameter; 1187 (void)parameter;
1188 rb = api; 1188 rb = api;
1189#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
1190 rb->cpu_boost(true);
1191#endif
1192 1189
1193 bally=0; 1190 bally=0;
1194 ballx=0; 1191 ballx=0;
@@ -1205,9 +1202,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
1205 /* Restore user's original backlight setting */ 1202 /* Restore user's original backlight setting */
1206 rb->backlight_set_timeout(rb->global_settings->backlight_timeout); 1203 rb->backlight_set_timeout(rb->global_settings->backlight_timeout);
1207 1204
1208#if !defined(SIMULATOR) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
1209 rb->cpu_boost(false);
1210#endif
1211
1212 return PLUGIN_OK; 1205 return PLUGIN_OK;
1213} 1206}