1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-18 22:05:10 +03:00

[all] Issue #592 - Sticky switches on all boards. Saves 62bytes on

stock!
This commit is contained in:
Bertrand Songis 2014-02-03 14:05:05 +01:00
parent 9730f8d190
commit e48c27d30a
6 changed files with 16 additions and 156 deletions

View file

@ -4476,7 +4476,7 @@ void menuModelCustomSwitches(uint8_t event)
int8_t v1_min=0, v1_max=MIXSRC_LAST_TELEM, v2_min=0, v2_max=MIXSRC_LAST_TELEM;
#endif
if (cstate == CS_VBOOL || IS_VSTICKY(cstate)) {
if (cstate == CS_VBOOL || cstate == CS_VSTICKY) {
putsSwitches(CSW_2ND_COLUMN, y, cs->v1, attr1);
putsSwitches(CSW_3RD_COLUMN, y, cs->v2, attr2);
v1_min = SWSRC_OFF+1; v1_max = SWSRC_ON-1;