Fix Color8 constructor using wrong value range

Fix #5015
This commit is contained in:
George Marques 2016-06-03 14:59:40 -03:00
parent 21e05167b1
commit 43dad78209
No known key found for this signature in database
GPG Key ID: 046BD46A3201E43D

View File

@ -1010,11 +1010,11 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va
VALIDATE_ARG_NUM(1);
VALIDATE_ARG_NUM(2);
Color color(*p_args[0],*p_args[1],*p_args[2]);
Color color((float)*p_args[0]/255.0f,(float)*p_args[1]/255.0f,(float)*p_args[2]/255.0f);
if (p_arg_count==4) {
VALIDATE_ARG_NUM(3);
color.a=*p_args[3];
color.a=(float)*p_args[3]/255.0f;
}
r_ret=color;