Skip to content

Commit 46759a5

Browse files
authored
fix: require 5.3 for attributes (#112)
1 parent 50294ab commit 46759a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/BugSplatRuntime/Private/BugSplatRuntime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ TMap<FString, FString> FBugSplatRuntimeModule::GetCrashAttributes() const
4545
{
4646
TMap<FString, FString> Attributes;
4747

48-
#if ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 2
48+
#if ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION >= 3
4949
// Add engine information
5050
Attributes.Add(TEXT("EngineVersion"), FEngineVersion::Current().ToString());
5151
Attributes.Add(TEXT("EngineBranch"), FEngineVersion::Current().GetBranch());

0 commit comments

Comments
 (0)