aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelene ToyKeeper2023-10-05 10:28:24 -0600
committerSelene ToyKeeper2023-10-05 10:28:24 -0600
commit67baddcbc8bf0abda618755654b30e2bd1b324f2 (patch)
treece285f527edf9c71371a5c8ddfc5448a4bfa7540
parentadded thefreeman-boost-fwaa build, and made aux RGB voltage work on AA/NiMH (diff)
downloadanduril-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.h6
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,