Skip to content

Commit 5b5dff3

Browse files
committed
format tweak
1 parent a4079ad commit 5b5dff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rtextures.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3821,7 +3821,7 @@ Color Fade(Color color, float alpha)
38213821
if (alpha < 0.0f) alpha = 0.0f;
38223822
else if (alpha > 1.0f) alpha = 1.0f;
38233823

3824-
return (Color){color.r, color.g, color.b, (unsigned char)(255.0f*alpha)};
3824+
return (Color){ color.r, color.g, color.b, (unsigned char)(255.0f*alpha) };
38253825
}
38263826

38273827
// Get hexadecimal value for a Color

0 commit comments

Comments
 (0)