From 91561af7f7c782841576d4556944d8dd35b61226 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Wed, 29 Jul 2020 23:50:31 -0600 Subject: reduced ROM size 56 bytes by making actual_level non-volatile (seems unnecessary now; doesn't change in the middle of an event handler any more) --- spaghetti-monster/fsm-ramping.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spaghetti-monster/fsm-ramping.h b/spaghetti-monster/fsm-ramping.h index c650e21..9f29f27 100644 --- a/spaghetti-monster/fsm-ramping.h +++ b/spaghetti-monster/fsm-ramping.h @@ -24,7 +24,7 @@ #ifdef USE_RAMPING // actual_level: last ramp level set by set_level() -volatile uint8_t actual_level = 0; +uint8_t actual_level = 0; #ifdef USE_TINT_RAMPING uint8_t tint = 128; -- cgit v1.2.3