diff options
| author | Selene ToyKeeper | 2023-10-05 10:28:24 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-10-05 10:28:24 -0600 |
| commit | 67baddcbc8bf0abda618755654b30e2bd1b324f2 (patch) | |
| tree | ce285f527edf9c71371a5c8ddfc5448a4bfa7540 | |
| parent | added thefreeman-boost-fwaa build, and made aux RGB voltage work on AA/NiMH (diff) | |
| download | anduril-67baddcbc8bf0abda618755654b30e2bd1b324f2.tar.gz anduril-67baddcbc8bf0abda618755654b30e2bd1b324f2.tar.bz2 anduril-67baddcbc8bf0abda618755654b30e2bd1b324f2.zip | |
fixed bug: globals menu missed a step when tint ramping wasn't compiled in
| -rw-r--r-- | spaghetti-monster/anduril/ramp-mode.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/spaghetti-monster/anduril/ramp-mode.h b/spaghetti-monster/anduril/ramp-mode.h index 21e2149..615da87 100644 --- a/spaghetti-monster/anduril/ramp-mode.h +++ b/spaghetti-monster/anduril/ramp-mode.h @@ -188,7 +188,8 @@ void reset_sunset_timer(); #ifdef USE_RAMP_EXTRAS_CONFIG typedef enum { - manual_memory_config_step = 1, + ramp_extras_cfg_zero = 0, + manual_memory_config_step, #ifdef USE_MANUAL_MEMORY_TIMER manual_memory_timer_config_step, #endif @@ -207,8 +208,9 @@ typedef enum { #ifdef USE_GLOBALS_CONFIG typedef enum { + globals_cfg_zero = 0, #if defined(USE_CHANNEL_MODE_ARGS) && defined(USE_STEPPED_TINT_RAMPING) - tint_style_config_step = 1, + tint_style_config_step, #endif #ifdef USE_JUMP_START jump_start_config_step, |
