Skip to content

Commit fefee4d

Browse files
committed
Make wave faster
1 parent f5eb9c4 commit fefee4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Applications/Sequencer/MessageDisplay.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void SequencerMessageDisplay::RenderWave(Point origin, uint8_t row, Color color)
5656
ClearRows(origin, row);
5757
for(uint8_t x = 0; x < 8; x++)
5858
{
59-
uint8_t scale = ColorEffects::Breath(1000, 125 * x);
59+
uint8_t scale = ColorEffects::Breath(600, 75 * x);
6060
Color colColor = Color::Crossfade(color, Color::White, Fract16(scale, 8));
6161
for(uint8_t y = 0; y < row; y++)
6262
{

0 commit comments

Comments
 (0)