summaryrefslogtreecommitdiff
path: root/apps/plugins/test_grey.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_grey.c')
-rw-r--r--apps/plugins/test_grey.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/test_grey.c b/apps/plugins/test_grey.c
index 121cbad051..07fda1b9c6 100644
--- a/apps/plugins/test_grey.c
+++ b/apps/plugins/test_grey.c
@@ -123,9 +123,9 @@ enum plugin_status plugin_start(const void* parameter)
123 } 123 }
124 for (i = 0; i <= STEPS; i++) 124 for (i = 0; i <= STEPS; i++)
125 input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS; 125 input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS;
126#ifdef HAVE_BACKLIGHT 126
127 backlight_ignore_timeout(); 127 backlight_ignore_timeout();
128#endif 128
129 grey_set_background(0); /* set background to black */ 129 grey_set_background(0); /* set background to black */
130 grey_clear_display(); 130 grey_clear_display();
131 grey_show(true); 131 grey_show(true);
@@ -221,8 +221,8 @@ enum plugin_status plugin_start(const void* parameter)
221 } 221 }
222 222
223 grey_release(); 223 grey_release();
224#ifdef HAVE_BACKLIGHT 224
225 backlight_use_settings(); 225 backlight_use_settings();
226#endif 226
227 return PLUGIN_OK; 227 return PLUGIN_OK;
228} 228}