diff --git a/src/rtext.c b/src/rtext.c index 86fb0de89..83728202f 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -367,7 +367,7 @@ Font LoadFontEx(const char *fileName, int fontSize, int *fontChars, int glyphCou } // Check equality of two colors -inline bool ColorEqual(Color col1, Color col2) { +static inline bool ColorEqual(Color col1, Color col2) { return (col1.r == col2.r) && (col1.g == col2.g) && (col1.b == col2.b) && (col1.a == col2.a); }