MicroDagr - move drawEH array define to preInit

Fix load order problems (init.sqf can be before postInit)
This commit is contained in:
PabstMirror 2015-11-02 15:21:34 -06:00
parent ac22ca3637
commit 50ab2aa904
2 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,6 @@
if (!hasInterface) exitWith {};
//Functions that are called for each draw of the map:
GVAR(miniMapDrawHandlers) = [];
//Add deviceKey entry:
private ["_conditonCode", "_toggleCode", "_closeCode"];
_conditonCode = {

View File

@ -23,4 +23,7 @@ PREP(saveCurrentAndSetNewMode);
PREP(showApplicationPage);
PREP(updateDisplay);
//Functions that are called for each draw of the map:
GVAR(miniMapDrawHandlers) = [];
ADDON = true;