This commit is contained in:
Leon Wilzer 2022-11-23 18:08:47 +01:00
parent 96f368b4f5
commit 6f279e01d8

View File

@ -93,7 +93,7 @@ void spectrum()
if(++blue_state>LIGHT_MAX) {++spectrum_state;}
break;
case mg:
if(--green_state>LIGHT_MIN) {spectrum_state = 0;}
if(--green_state<LIGHT_MIN) {spectrum_state = 0;}
default:
spectrum_state = 0;
}