aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster
diff options
context:
space:
mode:
authorSelene ToyKeeper2018-01-24 21:07:08 -0700
committerSelene ToyKeeper2018-01-24 21:07:08 -0700
commite28b53c50d967a291b29c713ed9e637edd072e30 (patch)
treeca81c824b398ce98c6a3700da1a57470af09b8ce /spaghetti-monster
parentMade candle mode more candle-like and more complex. (diff)
downloadanduril-e28b53c50d967a291b29c713ed9e637edd072e30.tar.gz
anduril-e28b53c50d967a291b29c713ed9e637edd072e30.tar.bz2
anduril-e28b53c50d967a291b29c713ed9e637edd072e30.zip
Minor candle mode tweaks for a better appearance.
Diffstat (limited to 'spaghetti-monster')
-rw-r--r--spaghetti-monster/anduril/anduril.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c
index 71c3d62..9d7e0d8 100644
--- a/spaghetti-monster/anduril/anduril.c
+++ b/spaghetti-monster/anduril/anduril.c
@@ -575,7 +575,7 @@ uint8_t strobe_state(EventPtr event, uint16_t arg) {
static uint8_t candle_wave2_speed = 0;
static uint8_t candle_wave2_depth = 7;
static uint8_t candle_wave3_depth = 4;
- static uint8_t candle_mode_brightness = 20;
+ static uint8_t candle_mode_brightness = 24;
#endif
if (event == EV_enter_state) {
@@ -679,7 +679,7 @@ uint8_t strobe_state(EventPtr event, uint16_t arg) {
candle_wave2_depth --;
// random sawtooth retrigger
if ((pseudo_rand()) == 0) {
- candle_wave2_depth = 6;
+ candle_wave2_depth = 7;
//candle_wave3_depth = 5;
candle_wave2 = 0;
}
@@ -687,7 +687,7 @@ uint8_t strobe_state(EventPtr event, uint16_t arg) {
if ((candle_wave3_depth > 2) && ((pseudo_rand()>>3) == 0))
candle_wave3_depth --;
if ((pseudo_rand()>>1) == 0)
- candle_wave3_depth = 4;
+ candle_wave3_depth = 5;
}
#endif
return MISCHIEF_MANAGED;