From 674375c9b5ebb0f076b6f67ca41aa41ea0be60cb Mon Sep 17 00:00:00 2001 From: stickm4n Date: Sat, 11 Feb 2023 23:56:57 -0500 Subject: [PATCH] Fixed build error on MacOS on previous commit --- src/rtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }