Change GetColor to take unsigned int (#1954)

This commit is contained in:
Richard Smith
2021-08-26 16:31:01 +01:00
committed by GitHub
parent 1286bc076f
commit cac856119c
5 changed files with 6 additions and 6 deletions

View File

@ -3711,7 +3711,7 @@ Color ColorAlphaBlend(Color dst, Color src, Color tint)
}
// Get a Color struct from hexadecimal value
Color GetColor(int hexValue)
Color GetColor(unsigned int hexValue)
{
Color color;