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

@@ -367,9 +367,9 @@ static int screenshotCounter = 0; // Screenshots counter
#endif
#if defined(SUPPORT_GIF_RECORDING)
unsigned int gifFrameCounter = 0; // GIF frames counter
bool gifRecording = false; // GIF recording state
MsfGifState gifState = { 0 }; // MSGIF context state
static unsigned int gifFrameCounter = 0; // GIF frames counter
static bool gifRecording = false; // GIF recording state
static MsfGifState gifState = { 0 }; // MSGIF context state
#endif
#if defined(SUPPORT_AUTOMATION_EVENTS)