summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rtextures.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index 47ff83f5..ca4c60d1 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -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]