Remove deadcode

master
rexim 2020-01-06 05:43:15 +07:00
parent e768d73e03
commit aef1044af8
1 changed files with 0 additions and 7 deletions

View File

@ -31,11 +31,4 @@ Color color_invert(Color c);
Color color_scale(Color c, Color fc);
static inline
Color color_set_alpha(Color c, float a)
{
c.a = a;
return c;
}
#endif // COLOR_H_