This commit is contained in:
David Joy 2014-07-25 15:20:59 +00:00
commit 9d1cc9ba09

View File

@ -293,10 +293,10 @@ hsv2rgb(UINT8* out, const UINT8* in, int xsize)
{ // following colorsys.py
int p,q,t;
uint up,uq,ut;
unsigned int up,uq,ut;
int i, x;
float f, fs;
uint h,s,v;
unsigned int h,s,v;
for (x = 0; x < xsize; x++, in += 4) {
h = in[0];