From 2a798d64a2040979a5cc6e8f40282f66edb23169 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 2 Sep 2022 21:28:19 +0200 Subject: [PATCH] Export `raylibVersion` symbol. Fixes #2671 --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index c15022230..fc57db58c 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -505,7 +505,7 @@ typedef struct CoreData { //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- -const char *raylibVersion = RAYLIB_VERSION; // raylib version symbol, it could be required for some bindings +RLAPI const char *raylibVersion = RAYLIB_VERSION; // raylib version exported symbol, it could be required for some bindings static CoreData CORE = { 0 }; // Global CORE state context