color.cpp: use variable br_

Variable 'br_' is assigned a value that is never used


Origin commit data
------------------
Commit: c5b9786df4
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-12-02 (Mon, 02 Dec 2013)
This commit is contained in:
2013-12-02 21:06:20 +01:00
parent 3fd1beaac3
commit e328aad016

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);
}