diff --git a/Source/Engine/Platform/Windows/WindowsPlatform.cpp b/Source/Engine/Platform/Windows/WindowsPlatform.cpp index 8c99bff21..2a4cd2fd4 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatform.cpp +++ b/Source/Engine/Platform/Windows/WindowsPlatform.cpp @@ -923,7 +923,7 @@ bool WindowsPlatform::GetEnvironmentVariable(const String& name, String& value) DWORD result = GetEnvironmentVariableW(*name, buffer, bufferSize); if (result == 0) { - LOG_WIN32_LAST_ERROR; + //LOG_WIN32_LAST_ERROR; return true; } if (bufferSize < result)