diff options
Diffstat (limited to 'src/gui/palette.cpp')
-rw-r--r-- | src/gui/palette.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/palette.cpp b/src/gui/palette.cpp index 0e3f9560c..cedfb0f86 100644 --- a/src/gui/palette.cpp +++ b/src/gui/palette.cpp @@ -132,7 +132,7 @@ void Palette::advanceGradient() else if (grad == GradientType::SPECTRUM) { if (colIndex % 2) - { // falling curve + { // falling curve if (delay) { colVal = CAST_S32(255.0 * @@ -145,7 +145,7 @@ void Palette::advanceGradient() } } else - { // ascending curve + { // ascending curve if (delay) { colVal = CAST_S32(255.0 * (cos(M_PI * |