summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sdl')
-rw-r--r--firmware/target/hosted/sdl/lcd-bitmap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/lcd-bitmap.c b/firmware/target/hosted/sdl/lcd-bitmap.c
index 5f895d802d..aefbb17b42 100644
--- a/firmware/target/hosted/sdl/lcd-bitmap.c
+++ b/firmware/target/hosted/sdl/lcd-bitmap.c
@@ -162,7 +162,15 @@ void sim_backlight(int value)
162#endif 162#endif
163 } 163 }
164#else /* LCD_DEPTH > 8 */ 164#else /* LCD_DEPTH > 8 */
165#ifdef HAVE_TRANSFLECTIVE_LCD
166 if (!lcd_active())
167 SDL_SetAlpha(lcd_surface, SDL_SRCALPHA, 0);
168 else
169 SDL_SetAlpha(lcd_surface, SDL_SRCALPHA,
170 MAX(BACKLIGHT_OFF_ALPHA, (value * 255) / 100));
171#else
165 SDL_SetAlpha(lcd_surface, SDL_SRCALPHA, (value * 255) / 100); 172 SDL_SetAlpha(lcd_surface, SDL_SRCALPHA, (value * 255) / 100);
173#endif
166#endif /* LCD_DEPTH */ 174#endif /* LCD_DEPTH */
167 175
168 sdl_gui_update(lcd_surface, 0, 0, SIM_LCD_WIDTH, SIM_LCD_HEIGHT, 176 sdl_gui_update(lcd_surface, 0, 0, SIM_LCD_WIDTH, SIM_LCD_HEIGHT,