1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 12:25:12 +03:00

Fixes numbering discrepancy for Horus inputs (#4967)

Fixes #4966
This commit is contained in:
3djc 2017-05-29 13:24:29 +02:00 committed by Andre Bernet
parent fd16151850
commit 3d17023bc9

View file

@ -325,7 +325,7 @@ char * getSourceString(char * dest, mixsrc_t idx)
dest[LEN_INPUT_NAME] = '\0'; dest[LEN_INPUT_NAME] = '\0';
} }
else { else {
strAppendUnsigned(dest, idx, 2); strAppendUnsigned(dest, idx+1, 2);
} }
} }
#if defined(LUA_INPUTS) #if defined(LUA_INPUTS)