diff options
| author | Ray <[email protected]> | 2022-09-02 21:28:19 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-09-02 21:28:19 +0200 |
| commit | 2a798d64a2040979a5cc6e8f40282f66edb23169 (patch) | |
| tree | 3f529e68d946b4caeedbfdec491b82adf3259414 | |
| parent | 234576da71757e1f02911993175e22762923749b (diff) | |
| download | raylib-2a798d64a2040979a5cc6e8f40282f66edb23169.tar.gz raylib-2a798d64a2040979a5cc6e8f40282f66edb23169.zip | |
Export `raylibVersion` symbol. Fixes #2671
| -rw-r--r-- | src/rcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c index c1502223..fc57db58 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 |
