Fixed build error on MacOS on previous commit
This commit is contained in:
parent
b28cca2c31
commit
674375c9b5
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user