[rtextures] Fix Undefined behaviour in ColorToInt (#3996)

This commit is contained in:
OetkenPurveyorOfCode 2024-05-21 15:44:02 +02:00 committed by GitHub
parent c4a51a3ebd
commit 9ef29aff9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

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