Fix Issues

This commit is contained in:
jokoho48 2015-08-28 13:15:21 +02:00
parent 5598c3abe1
commit a83a5a17a3
5 changed files with 6 additions and 2 deletions

View File

@ -16,5 +16,5 @@ PREP(storeUserData);
PREP(updateDisplay);
PREP(updateImpellerState);
PREP(updateMemory);
PREP(dayOfWeek)
PREP(dayOfWeek);
ADDON = true;

View File

@ -15,6 +15,7 @@
*
* Public: No
*/
#include "script_component.hpp"
private "_table";
params ["_year", "_month", "_day"];

View File

@ -102,7 +102,7 @@ GVAR(Overlay) = true;
__ctrlInfoLine1 ctrlSetText _ctrlInfoLine1;
__ctrlInfoLine2 ctrlSetText _ctrlInfoLine2;
__ctrlBottomBig ctrlSetText _ctrlBottomBig ;
__ctrlBottomBig ctrlSetText _ctrlBottomBig;
__ctrlCenterLine1 ctrlSetText _ctrlCenterLine1;
__ctrlCenterLine2 ctrlSetText _ctrlCenterLine2;

View File

@ -14,6 +14,7 @@
*
* Public: No
*/
#include "script_component.hpp"
params ["_slot", "_value"];
GVAR(MIN) set [_slot, (GVAR(MIN) select _slot) min _value];
GVAR(MAX) set [_slot, _value max (GVAR(MAX) select _slot)];

View File

@ -1,6 +1,8 @@
#define COMPONENT kestrel4500
#include "\z\ace\addons\main\script_mod.hpp"
#define DEBUG_ENABLED_KESTREL4500
#ifdef DEBUG_ENABLED_KESTREL4500
#define DEBUG_MODE_FULL
#endif