Skip to content

Commit

Permalink
Common - Use CBA_fnc_execAfterNFrames (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharis001 authored Nov 17, 2023
1 parent b839ca8 commit 010445a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 33 deletions.
1 change: 0 additions & 1 deletion addons/common/XEH_PREP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ PREP(drawHint);
PREP(dumpPerformanceCounters);
PREP(earthquake);
PREP(ejectPassengers);
PREP(execAfterNFrames);
PREP(exportMissionSQF);
PREP(exportText);
PREP(fireArtillery);
Expand Down
30 changes: 0 additions & 30 deletions addons/common/functions/fnc_execAfterNFrames.sqf

This file was deleted.

2 changes: 1 addition & 1 deletion addons/main/script_mod.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

// MINIMAL required version for the Mod. Components can specify others..
#define REQUIRED_VERSION 2.14
#define REQUIRED_CBA_VERSION {3,15,8}
#define REQUIRED_CBA_VERSION {3,16,0}

#ifdef COMPONENT_BEAUTIFIED
#define COMPONENT_NAME QUOTE(ZEN - COMPONENT_BEAUTIFIED)
Expand Down
2 changes: 1 addition & 1 deletion addons/markers_tree/functions/fnc_initDisplayCurator.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ missionNamespace getVariable ["RscDisplayCurator_sections", [0, 0]] params ["_mo
// to properly hide the empty side control when initially in markers mode
if (_mode == 3) then {
private _ctrlSideEmpty = _display displayCtrl IDC_RSCDISPLAYCURATOR_SIDEEMPTY;
[{_this ctrlShow false}, _ctrlSideEmpty, 3] call EFUNC(common,execAfterNFrames);
[{_this ctrlShow false}, _ctrlSideEmpty, 3] call CBA_fnc_execAfterNFrames;
};

0 comments on commit 010445a

Please sign in to comment.