mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-11 19:14:38 +00:00
Make sure backlight is in the range 0-100
This commit is contained in:
parent
ec88a0b3cc
commit
086aad0d7e
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ LLDSPEC bool_t gdisp_lld_init(GDisplay *g) {
|
||||||
if (g->g.Backlight == (unsigned)g->p.ptr)
|
if (g->g.Backlight == (unsigned)g->p.ptr)
|
||||||
return;
|
return;
|
||||||
unsigned val = (unsigned)g->p.ptr;
|
unsigned val = (unsigned)g->p.ptr;
|
||||||
g->g.Backlight = val > 255 ? 255 : val;
|
g->g.Backlight = val > 100 ? 100 : val;
|
||||||
g->flags |= GDISP_FLG_NEEDFLUSH;
|
g->flags |= GDISP_FLG_NEEDFLUSH;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue