Skip to content

Commit

Permalink
Add animstatechanged to ignored event logs
Browse files Browse the repository at this point in the history
Allow CMD_CLIB_DISABLECOMPRESSION to disable Compression
  • Loading branch information
jokoho48 committed Sep 11, 2023
1 parent fcaf5ee commit 747ed57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions addons/CLib/Events/fn_init.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ GVAR(ignoredLogEventNames_1) = [];
["cursortargetchanged", 1],
["cursorobjectchanged", 1],
["playerinventorychanged", 1],
["animstatechanged", 0],
[QEGVAR(Core,extensionRequest), 0],
[QEGVAR(Core,extensionResult), 0]
];
Expand Down
5 changes: 5 additions & 0 deletions addons/CLib/macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
#undef DISABLECOMPRESSION
#endif

// Allow DISABLECOMPRESSION to be enabled over Startup Parameter -preprocDefine=CLIB_DISABLECOMPRESSION or -preprocDefine=CMD_CLIB_DISABLECOMPRESSION
#ifdef CMD_CLIB_DISABLECOMPRESSION
#define DISABLECOMPRESSION
#endif

// Allow ISDEV to be enabled over Startup Parameter -preprocDefine=CLIB_ISDEV or -preprocDefine=CMD__CLIB_ISDEV
#ifdef CMD__CLIB_ISDEV
#define ISDEV
Expand Down

0 comments on commit 747ed57

Please sign in to comment.