mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed some macro stuff
This commit is contained in:
parent
94a5b38cf6
commit
a576ed82ee
@ -1,9 +1,9 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(rate) {
|
||||
displayName = LSTRING(RefuelSettings_speed_DisplayName);
|
||||
description = LSTRING(RefuelSettings_speed_Description);
|
||||
displayName = CSTRING(RefuelSettings_speed_DisplayName);
|
||||
description = CSTRING(RefuelSettings_speed_Description);
|
||||
value = 1;
|
||||
typeName = "SCALAR";
|
||||
values[] = {LSTRING(RefuelSettings_basic), LSTRING(RefuelSettings_advanced)};
|
||||
values[] = {CSTRING(RefuelSettings_basic), CSTRING(RefuelSettings_advanced)};
|
||||
};
|
||||
};
|
||||
|
@ -1,4 +1,12 @@
|
||||
#define COMPONENT refuel
|
||||
#include "\z\ace\addons\main\script_mod.hpp"
|
||||
|
||||
#ifdef DEBUG_ENABLED_REFUEL
|
||||
#define DEBUG_MODE_FULL
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG_ENABLED_REFUEL
|
||||
#define DEBUG_SETTINGS DEBUG_ENABLED_REFUEL
|
||||
#endif
|
||||
|
||||
#include "\z\ace\addons\main\script_macros.hpp"
|
||||
|
Loading…
Reference in New Issue
Block a user