From de968e3623e773b245a20136c5e2e0207511059d Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 2 Sep 2022 21:32:58 +0200 Subject: [PATCH] WARNING: RENAMED symbol `raylibVersion` to `raylib_version` I want to note this is a special symbol exported --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index fc57db58c..200e490ae 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -505,7 +505,7 @@ typedef struct CoreData { //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- -RLAPI const char *raylibVersion = RAYLIB_VERSION; // raylib version exported symbol, it could be required for some bindings +RLAPI const char *RAYLIB_VERSION = RAYLIB_VERSION; // raylib version exported symbol, it could be required for some bindings static CoreData CORE = { 0 }; // Global CORE state context