UI: Change contrast steps to 4 to match GD-77 HW contrast range (0-63)

This commit is contained in:
Federico Amedeo Izzo 2021-03-14 11:21:39 +01:00
parent a5b0bc57d1
commit 3da311ee38
1 changed files with 2 additions and 2 deletions

View File

@ -1072,7 +1072,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx)
break;
#ifdef SCREEN_CONTRAST
case D_CONTRAST:
_ui_changeContrast(-25);
_ui_changeContrast(-4);
break;
#endif
default:
@ -1088,7 +1088,7 @@ void ui_updateFSM(event_t event, bool *sync_rtx)
break;
#ifdef SCREEN_CONTRAST
case D_CONTRAST:
_ui_changeContrast(+25);
_ui_changeContrast(+4);
break;
#endif
default: