From dff7f0144d1181419f7638502c24c5643f607493 Mon Sep 17 00:00:00 2001 From: Ivan Tustanivskyi Date: Thu, 31 Oct 2024 19:41:43 +0200 Subject: [PATCH] Fix condition --- plugin-dev/Source/Sentry/Private/SentryOutputDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-dev/Source/Sentry/Private/SentryOutputDevice.cpp b/plugin-dev/Source/Sentry/Private/SentryOutputDevice.cpp index a10707c3..d77f59f1 100644 --- a/plugin-dev/Source/Sentry/Private/SentryOutputDevice.cpp +++ b/plugin-dev/Source/Sentry/Private/SentryOutputDevice.cpp @@ -75,7 +75,7 @@ bool FSentryOutputDevice::CanBeUsedOnMultipleThreads() const return true; } -#if ENGINE_MAJOR_VERSION >= 5 +#if ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 1 bool FSentryOutputDevice::CanBeUsedOnPanicThread() const { return true;