Fix shift into sign in cl_cin.c

This commit is contained in:
Dominic Fandrey 2016-11-26 14:44:33 +01:00 committed by Zack Middleton
parent ae9edd1491
commit 62cec249d7

View file

@ -609,7 +609,7 @@ static unsigned int yuv_to_rgb24( long y, long u, long v )
if (g > 255) g = 255;
if (b > 255) b = 255;
return LittleLong ((r)|(g<<8)|(b<<16)|(255<<24));
return LittleLong ((unsigned long)((r)|(g<<8)|(b<<16))|(255UL<<24));
}
/******************************************************************************