QEGVAR vs QGVAR

This commit is contained in:
commy2 2016-09-30 12:18:59 +02:00
parent bd98e44a94
commit 490155270b
3 changed files with 3 additions and 3 deletions

View File

@ -156,7 +156,7 @@ TRACE_1("",_treatmentTime);
// speed up animation depending on treatment time
if (!isNil "_animDuration") then {
[QGVAR(setAnimSpeedCoef), [_caller, _animDuration / _treatmentTime]] call CBA_fnc_globalEvent;
[QEGVAR(common,setAnimSpeedCoef), [_caller, _animDuration / _treatmentTime]] call CBA_fnc_globalEvent;
TRACE_2("",_animDuration,_treatmentTime);
};

View File

@ -31,7 +31,7 @@ if (!isNil "_endInAnim") then {
};
// reset sped up animations
[QGVAR(setAnimSpeedCoef), [_caller, 1]] call CBA_fnc_globalEvent;
[QEGVAR(common,setAnimSpeedCoef), [_caller, 1]] call CBA_fnc_globalEvent;
{
_x params ["_unit", "_item"];

View File

@ -31,7 +31,7 @@ if (!isNil "_endInAnim") then {
};
// reset sped up animations
[QGVAR(setAnimSpeedCoef), [_caller, 1]] call CBA_fnc_globalEvent;
[QEGVAR(common,setAnimSpeedCoef), [_caller, 1]] call CBA_fnc_globalEvent;
// Record specific callback
private _config = configFile >> QGVAR(Actions) >> CUR_LEVEL >> _className;