Fixed build error on MacOS on previous commit

This commit is contained in:
stickm4n 2023-02-11 23:56:57 -05:00
parent b28cca2c31
commit 674375c9b5

View File

@ -367,7 +367,7 @@ Font LoadFontEx(const char *fileName, int fontSize, int *fontChars, int glyphCou
} }
// Check equality of two colors // 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); return (col1.r == col2.r) && (col1.g == col2.g) && (col1.b == col2.b) && (col1.a == col2.a);
} }