Replaced QUOTE(GVAR(...)) with QGVAR(...)

This commit is contained in:
ulteq 2015-04-10 18:11:01 +02:00
parent 4e50760064
commit 9604699f26

View File

@ -1,22 +1,22 @@
#include "script_component.hpp"
if (!isNil QUOTE(GVAR(windSpeed))) then
if (!isNil QGVAR(windSpeed)) then
{
ctrlSetText [300, Str(Round((GVAR(windSpeed) select GVAR(currentTarget)) * 100) / 100)];
};
if (!isNil QUOTE(GVAR(windDirection))) then
if (!isNil QGVAR(windDirection)) then
{
ctrlSetText [310, Str(Round((GVAR(windDirection) select GVAR(currentTarget))))];
};
if (!isNil QUOTE(GVAR(inclinationAngle))) then
if (!isNil QGVAR(inclinationAngle)) then
{
ctrlSetText [320, Str(Round((GVAR(inclinationAngle) select GVAR(currentTarget))))];
};
if (!isNil QUOTE(GVAR(targetSpeed))) then
if (!isNil QGVAR(targetSpeed)) then
{
ctrlSetText [330, Str(Round((GVAR(targetSpeed) select GVAR(currentTarget)) * 100) / 100)];
};
if (!isNil QUOTE(GVAR(targetRange))) then
if (!isNil QGVAR(targetRange)) then
{
ctrlSetText [340, Str(Round((GVAR(targetRange) select GVAR(currentTarget))))];
};