color.cpp: use variable br_

Variable 'br_' is assigned a value that is never used
This commit is contained in:
2013-12-02 21:06:20 +01:00
parent ce7bad6e16
commit c5b9786df4

View File

@@ -120,7 +120,7 @@ void changeBrightnessRGBRel2(RgbColor *rgb, int br)
HsvColor hsv;
Rgb2Hsv(rgb, &hsv);
hsv.v = br;
hsv.v = br_;
Hsv2Rgb(&hsv, rgb);
}