We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b96144 commit 7c284ccCopy full SHA for 7c284cc
1 file changed
src/rcore.c
@@ -2277,10 +2277,11 @@ int FileMove(const char *srcPath, const char *dstPath)
2277
int FileTextReplace(const char *fileName, const char *search, const char *replacement)
2278
{
2279
int result = 0;
2280
+
2281
+#if SUPPORT_MODULE_RTEXT
2282
char *fileText = NULL;
2283
char *fileTextUpdated = { 0 };
2284
-#if SUPPORT_MODULE_RTEXT
2285
if (FileExists(fileName))
2286
2287
fileText = LoadFileText(fileName);
0 commit comments