1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 20:35:17 +03:00
This commit is contained in:
Bertrand Songis 2019-05-25 11:14:46 +02:00
parent 1ec55792f7
commit ecd6edbd5f
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -48,7 +48,7 @@ int16_t getGVarValue(int8_t gv, int8_t fm)
int32_t getGVarValuePrec1(int8_t gv, int8_t fm)
{
int8_t idx = (gv >= 0 ? gv : -idx - 1);
int8_t idx = (gv >= 0 ? gv : -gv - 1);
int8_t mul = (g_model.gvars[idx].prec == 0 ? 10 : 1); // explicit cast to `int` needed, othervise gv is promoted to double!
if (gv < 0) {
mul = -mul;