mirror of
https://github.com/raysan5/raylib.git
synced 2026-06-05 03:14:12 +00:00
Fix warning about unused variables (#5898)
This commit is contained in:
committed by
GitHub
parent
7b96144716
commit
7c284cc5bc
@@ -2277,10 +2277,11 @@ int FileMove(const char *srcPath, const char *dstPath)
|
||||
int FileTextReplace(const char *fileName, const char *search, const char *replacement)
|
||||
{
|
||||
int result = 0;
|
||||
|
||||
#if SUPPORT_MODULE_RTEXT
|
||||
char *fileText = NULL;
|
||||
char *fileTextUpdated = { 0 };
|
||||
|
||||
#if SUPPORT_MODULE_RTEXT
|
||||
if (FileExists(fileName))
|
||||
{
|
||||
fileText = LoadFileText(fileName);
|
||||
|
||||
Reference in New Issue
Block a user