Yardage - Fix broken display in 2.16 (#9892)

This commit is contained in:
PabstMirror 2024-04-01 06:28:08 -05:00 committed by GitHub
parent 0d45a85db6
commit 0365565efc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,12 +33,15 @@ GVAR(active) = true;
[{
if (CBA_missionTime - GVAR(powerOnTime) > 30) exitWith {
GVAR(active) = false;
74210 cutText ["", "PLAIN"];
QUOTE(ADDON) cutText ["", "PLAIN"];
[_this select 1] call CBA_fnc_removePerFrameHandler;
};
if (currentWeapon ACE_player == "ACE_Yardage450" && cameraView == "GUNNER") then {
74210 cutRsc ["ACE_RscYardage450", "PLAIN", 1, false];
if (isNil {__dsp} || {isNull __dsp} || {ctrlIDD __dsp != -1}) then {
TRACE_1("making display",__dsp);
QUOTE(ADDON) cutRsc ["ACE_RscYardage450", "PLAIN", 1, false];
};
__ctrlLaser ctrlShow GVAR(lasing);
if (GVAR(targetAcquired)) then {
@ -51,7 +54,7 @@ GVAR(active) = true;
__ctrlMeters ctrlShow !GVAR(useYards);
__ctrlYards ctrlShow GVAR(useYards);
} else {
74210 cutText ["", "PLAIN"];
QUOTE(ADDON) cutText ["", "PLAIN"];
};
}, 0, []] call CBA_fnc_addPerFrameHandler;