diff options
| author | Selene ToyKeeper | 2018-05-01 16:49:13 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2018-05-01 16:49:13 -0600 |
| commit | a93c243386fe48595a981e0fb8bca4f6b3d518a8 (patch) | |
| tree | 717031058e6a1989c2248f4b1d5d79b516192fcf | |
| parent | updated Anduril diagram based on recent UI changes (diff) | |
| download | anduril-a93c243386fe48595a981e0fb8bca4f6b3d518a8.tar.gz anduril-a93c243386fe48595a981e0fb8bca4f6b3d518a8.tar.bz2 anduril-a93c243386fe48595a981e0fb8bca4f6b3d518a8.zip | |
Added missing ifdef for muggle mode behavior at boot.
| -rw-r--r-- | spaghetti-monster/anduril/anduril.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c index be9404d..8e298b9 100644 --- a/spaghetti-monster/anduril/anduril.c +++ b/spaghetti-monster/anduril/anduril.c @@ -1451,9 +1451,11 @@ void setup() { load_config(); + #ifdef USE_MUGGLE_MODE if (muggle_mode_active) push_state(muggle_state, 0); else + #endif push_state(off_state, 0); #endif |
