Change some global variables to have internal linkage (#4252)

* Change some global variables to have internal linkage

* Update rcore.c

* Update rcore.c
This commit is contained in:
Lázaro Albuquerque
2024-08-13 13:16:07 -04:00
committed by GitHub
parent 65c4003546
commit 6e644a27fc
2 changed files with 5 additions and 5 deletions

View File

@@ -79,8 +79,8 @@
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
Texture2D texShapes = { 1, 1, 1, 1, 7 }; // Texture used on shapes drawing (white pixel loaded by rlgl)
Rectangle texShapesRec = { 0.0f, 0.0f, 1.0f, 1.0f }; // Texture source rectangle used on shapes drawing
static Texture2D texShapes = { 1, 1, 1, 1, 7 }; // Texture used on shapes drawing (white pixel loaded by rlgl)
static Rectangle texShapesRec = { 0.0f, 0.0f, 1.0f, 1.0f }; // Texture source rectangle used on shapes drawing
//----------------------------------------------------------------------------------
// Module specific Functions Declaration