diff options
| author | Selene ToyKeeper | 2023-10-10 22:56:07 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-10-10 22:56:07 -0600 |
| commit | 8f8a5943b83ecb3324dcbfedcb6d81010ff38c50 (patch) | |
| tree | 56aeae73cd69a45dda2912ae72a18c52505df7f2 | |
| parent | converted FW3A to new API (diff) | |
| download | anduril-8f8a5943b83ecb3324dcbfedcb6d81010ff38c50.tar.gz anduril-8f8a5943b83ecb3324dcbfedcb6d81010ff38c50.tar.bz2 anduril-8f8a5943b83ecb3324dcbfedcb6d81010ff38c50.zip | |
fix failed builds without USE_RAMP_AFTER_MOON_CONFIG
| -rw-r--r-- | spaghetti-monster/anduril/load-save-config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spaghetti-monster/anduril/load-save-config.h b/spaghetti-monster/anduril/load-save-config.h index c70bb2b..6ae2ba2 100644 --- a/spaghetti-monster/anduril/load-save-config.h +++ b/spaghetti-monster/anduril/load-save-config.h @@ -57,7 +57,9 @@ Config cfg = { #endif #endif - .dont_ramp_after_moon = DEFAULT_DONT_RAMP_AFTER_MOON, + #ifdef USE_RAMP_AFTER_MOON_CONFIG + .dont_ramp_after_moon = DEFAULT_DONT_RAMP_AFTER_MOON, + #endif #ifdef USE_MANUAL_MEMORY .manual_memory = DEFAULT_MANUAL_MEMORY, |
