mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 03:49:52 +03:00
Compilation fix for gcc 6.2.0
This commit is contained in:
parent
4ecc41229a
commit
fab3b96815
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ int16_t getGVarValue(int8_t gv, int8_t fm)
|
|||
int32_t getGVarValuePrec1(int8_t gv, int8_t fm)
|
||||
{
|
||||
int8_t mul;
|
||||
uint8_t prec = g_model.gvars[abs(gv)].prec;
|
||||
uint8_t prec = g_model.gvars[abs((int)gv)].prec; // explicit cast to `int` needed, othervise gv is promoted to double!
|
||||
if (prec == 0)
|
||||
mul = 10;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue