Skip to content

Commit

Permalink
disable debug
Browse files Browse the repository at this point in the history
  • Loading branch information
commy2 committed Jun 20, 2016
1 parent a6b86db commit c2d00af
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions addons/settings/XEH_preInit.sqf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define DEBUG_MODE_FULL
//#define DEBUG_MODE_FULL
#include "script_component.hpp"

ADDON = false;
Expand All @@ -8,14 +8,8 @@ ADDON = false;
#ifdef DEBUG_MODE_FULL
// CHECKBOX --- extra argument: default value
["Test_Setting_1", "CHECKBOX", ["-test checkbox-", "-tooltip-"], "My Category", true] call cba_settings_fnc_init;

// LIST --- extra arguments: [_values, _valueTitles, _defaultIndex]
["Test_Setting_2", "LIST", ["-test list-", "-tooltip-"], "My Category", [[1,0], ["enabled","disabled"], 1]] call cba_settings_fnc_init;

// SLIDER --- extra arguments: [_min, _max, _default, _trailingDecimals]
["Test_Setting_3", "SLIDER", ["-test slider-", "-tooltip-"], "My Category", [0, 10, 5, 0]] call cba_settings_fnc_init;

// COLOR PICKER --- extra argument: _color
["Test_Setting_4", "COLOR", ["-test color-", "-tooltip-"], "My Category", [1,1,0]] call cba_settings_fnc_init;
#endif

Expand Down

0 comments on commit c2d00af

Please sign in to comment.