Skip to content

Commit

Permalink
BF-888S - Use COMPILE_SCRIPT macro (#1273)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror authored Aug 17, 2023
1 parent d0ffb0d commit 4614ef0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/sys_bf888s/CfgEventHandlers.hpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class Extended_PreStart_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preStart));
init = QUOTE(call COMPILE_SCRIPT(XEH_preStart));
};
};

class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
init = QUOTE(call COMPILE_SCRIPT(XEH_preInit));
};
};

class Extended_PostInit_EventHandlers {
class ADDON {
clientInit = QUOTE(call COMPILE_FILE(XEH_postInit));
clientInit = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
};
};

0 comments on commit 4614ef0

Please sign in to comment.