summaryrefslogtreecommitdiff
path: root/apps/plugins/starfield.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/starfield.c')
-rw-r--r--apps/plugins/starfield.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c
index 7fc400d0ee..39ed8a8171 100644
--- a/apps/plugins/starfield.c
+++ b/apps/plugins/starfield.c
@@ -324,14 +324,14 @@ enum plugin_status plugin_start(const void* parameter)
324 int ret; 324 int ret;
325 325
326 (void)parameter; 326 (void)parameter;
327#ifdef HAVE_BACKLIGHT 327
328 /* Turn off backlight timeout */ 328 /* Turn off backlight timeout */
329 backlight_ignore_timeout(); 329 backlight_ignore_timeout();
330#endif 330
331 ret = plugin_main(); 331 ret = plugin_main();
332#ifdef HAVE_BACKLIGHT 332
333 /* Turn on backlight timeout (revert to settings) */ 333 /* Turn on backlight timeout (revert to settings) */
334 backlight_use_settings(); 334 backlight_use_settings();
335#endif 335
336 return ret; 336 return ret;
337} 337}