Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PlasmaDev5 committed Dec 22, 2024
1 parent c5bea5e commit ad94624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin-dev/Source/Sentry/Sentry.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,13 @@ private string GetWindowsGeneratorOptions(WindowsCompiler compiler, WindowsArchi
else if(architecture == UnrealArch.Arm64)
generatorOptions="-A ARM64";
#elif UE_5_0_OR_LATER // UE 5.0 to 5.1
if(architecture == WindowsArchitecture.x64)
if(architecture == WindowsArchitecture.x64)
generatorOptions="-A x64";
else if(architecture == WindowsArchitecture.ARM64)
generatorOptions="-A ARM64";

#else // Everything before UE 5.0
else if(architecture == WindowsArchitecture.x86)
if(architecture == WindowsArchitecture.x86)
generatorOptions="-A Win32";
else if(architecture == WindowsArchitecture.ARM32)
generatorOptions="-A ARM";
Expand Down

0 comments on commit ad94624

Please sign in to comment.