[DEBUG] missing a cont on colorf constructor

This commit is contained in:
Edouard DUPIN 2013-03-21 00:07:04 +01:00
parent 0f43afbed2
commit bf7295f49b

View File

@ -54,7 +54,7 @@ namespace draw {
b = _b; b = _b;
a = _a; a = _a;
} }
Colorf(draw::Color& _input) Colorf(const draw::Color& _input)
{ {
r = (float)_input.r / 255.0; r = (float)_input.r / 255.0;
g = (float)_input.g / 255.0; g = (float)_input.g / 255.0;