From 6cb22fcde88432510a570cf5e0cafc0c6bfebed3 Mon Sep 17 00:00:00 2001 From: ubkp <118854183+ubkp@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:27:11 -0300 Subject: [PATCH] Fix android include (#3364) --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index e54ac5e6e..3796571ad 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -332,7 +332,7 @@ const char *TextFormat(const char *text, ...); // Formatting of text with #include "rcore_web.c" #elif defined(PLATFORM_DRM) #include "rcore_drm.c" -#elif defined(PLATFOM_ANDROID) +#elif defined(PLATFORM_ANDROID) #include "rcore_android.c" #else // Software rendering backend, user needs to provide buffer ;)