From 87d4c189927636dd8bff5bb0275ff998347ab0fc Mon Sep 17 00:00:00 2001 From: Margers Date: Fri, 10 Jan 2025 00:22:15 +0000 Subject: [PATCH] Every compile gets actual current directory (fix for Textmode IDE) --- compiler/cfileutl.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/cfileutl.pas b/compiler/cfileutl.pas index fc17f27846..840428f9ec 100644 --- a/compiler/cfileutl.pas +++ b/compiler/cfileutl.pas @@ -1548,6 +1548,7 @@ end; procedure InitFileUtils; begin + CachedCurrentDir:=''; DirCache:=TDirectoryCache.Create; end;