color.cpp: use variable br_

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


Origin commit data
------------------
Branch: ni/coolstream
Commit: c5b9786df4
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-12-02 (Mon, 02 Dec 2013)



------------------
This commit was generated by Migit
This commit is contained in:
2013-12-02 21:06:20 +01:00
parent 970e5375c1
commit 0b9274876d

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