Browse Source

format tweak

pull/2821/head
Ray 2 years ago
parent
commit
5b5dff3f9e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rtextures.c

+ 1
- 1
src/rtextures.c View File

@ -3821,7 +3821,7 @@ Color Fade(Color color, float alpha)
if (alpha < 0.0f) alpha = 0.0f;
else if (alpha > 1.0f) alpha = 1.0f;
return (Color){color.r, color.g, color.b, (unsigned char)(255.0f*alpha)};
return (Color){ color.r, color.g, color.b, (unsigned char)(255.0f*alpha) };
}
// Get hexadecimal value for a Color

Loading…
Cancel
Save