Merge branch 'raysan5:master' into master

This commit is contained in:
JupiterRider 2024-05-21 15:44:51 +02:00 committed by GitHub
commit 21186b3188
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4510,9 +4510,7 @@ Color Fade(Color color, float alpha)
// Get hexadecimal value for a Color // Get hexadecimal value for a Color
int ColorToInt(Color color) int ColorToInt(Color color)
{ {
int result = (((int)color.r << 24) | ((int)color.g << 16) | ((int)color.b << 8) | (int)color.a); return (int)(((unsigned)color.r << 24) | ((unsigned)color.g << 16) | ((unsigned)color.b << 8) | color.a);
return result;
} }
// Get color normalized as float [0..1] // Get color normalized as float [0..1]