From 7c284cc5bc4a573596104a42f34d5518ff080949 Mon Sep 17 00:00:00 2001 From: Alexandre Almeida Date: Sat, 30 May 2026 03:47:35 -0300 Subject: [PATCH] Fix warning about unused variables (#5898) --- src/rcore.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 74774e77b..9f93ecbbc 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -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);