| 232 | } |
| 233 | |
| 234 | void AnimationStation::DecreaseBrightness() { |
| 235 | AnimationOptions & animationOptions = Storage::getInstance().getAnimationOptions(); |
| 236 | if (animationOptions.brightness > 0) |
| 237 | SetBrightness(animationOptions.brightness-1); |
| 238 | } |
| 239 | |
| 240 | void AnimationStation::IncreaseBrightness() { |
| 241 | AnimationOptions & animationOptions = Storage::getInstance().getAnimationOptions(); |
nothing calls this directly
no outgoing calls
no test coverage detected