From f02e7d0936f8fd32ed46c1daee73628e2ae37299 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 13 Jun 2024 23:01:51 +0200 Subject: [PATCH] Fix compilation error --- Source/Engine/Platform/Mac/MacFileSystemWatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Platform/Mac/MacFileSystemWatcher.cpp b/Source/Engine/Platform/Mac/MacFileSystemWatcher.cpp index ba3358d35..fed010e4e 100644 --- a/Source/Engine/Platform/Mac/MacFileSystemWatcher.cpp +++ b/Source/Engine/Platform/Mac/MacFileSystemWatcher.cpp @@ -39,7 +39,7 @@ void DirectoryWatchCallback( ConstFSEventStreamRef StreamRef, void* FileWatcherP { action = FileSystemAction::Rename; } - if (rmodified) + if (modified) { action = FileSystemAction::Modify; }