Skip to content

Commit

Permalink
Tools - Don't compile 4 funcs that modify base functions (#1634)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Mar 27, 2024
1 parent 698aee1 commit 18a1699
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .hemtt/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ git_hash = 0
enabled = true
exclude = [
".inc.sqf",
"diagnostic/fnc_isdebugconsoleallowed.sqf",
"xeh/fnc_initdisplay.sqf",
"xeh/fnc_startloadingscreen.sqf",
"xeh/fnc_endloadingscreen.sqf",
"/test_"
]

Expand Down
2 changes: 1 addition & 1 deletion addons/diagnostic/CfgFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CfgFunctions {
class A3 {
class Debug {
class isDebugConsoleAllowed {
file = QPATHTOF(fnc_isDebugConsoleAllowed.sqf);
file = QPATHTOF(fnc_isDebugConsoleAllowed.inc.sqf);
};
};
};
Expand Down
6 changes: 3 additions & 3 deletions addons/xeh/CfgFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ class CfgFunctions {
class A3 {
class GUI {
class initDisplay {
file = QPATHTOF(fnc_initDisplay.sqf);
file = QPATHTOF(fnc_initDisplay.inc.sqf);
};
};
class Misc {
class startLoadingScreen {
file = QPATHTOF(fnc_startLoadingScreen.sqf);
file = QPATHTOF(fnc_startLoadingScreen.inc.sqf);
};
class endLoadingScreen {
file = QPATHTOF(fnc_endLoadingScreen.sqf);
file = QPATHTOF(fnc_endLoadingScreen.inc.sqf);
};
};
};
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 0 additions & 4 deletions sqfc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
],
"excludeList": [
".inc.sqf",
"diagnostic\\fnc_isdebugconsoleallowed.sqf",
"xeh\\fnc_initdisplay.sqf",
"xeh\\fnc_startloadingscreen.sqf",
"xeh\\fnc_endloadingscreen.sqf",
"\\test_"
],
"outputDir": "P:/",
Expand Down

0 comments on commit 18a1699

Please sign in to comment.