You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix deprecation warning
[CL 33138204 by danny couture in ue5-main branch]
This commit is contained in:
@@ -467,7 +467,7 @@ void FCrashReportAnalyticsSessionSummary::LogEvent(const TCHAR* Event, bool bFor
|
||||
{
|
||||
FScopeLock ScopedLock(&LoggerLock);
|
||||
TGuardValue<bool> ReentrantGuard(bLoggerReentrantGuard, true);
|
||||
if (*ReentrantGuard) // Read the old value.
|
||||
if (ReentrantGuard.GetOriginalValue()) // Read the old value.
|
||||
{
|
||||
return; // Prevent renentrant logging.
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user