Skip to content

Commit c0e326a

Browse files
committed
Fix packaging for UE 5.4
1 parent f6f4c30 commit c0e326a

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

Source/UnrealLibretro/Private/LibretroBlueprintFunctionLibrary.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
#include "LibretroBlueprintFunctionLibrary.h"
22

3+
#include "Runtime/Launch/Resources/Version.h"
34
#include "GameFramework/Actor.h"
45

56
#include "Engine/Engine.h"
7+
#include "Engine/EngineTypes.h"
8+
#if ENGINE_MAJOR_VERSION == 5 \
9+
&& ENGINE_MINOR_VERSION >= 4
10+
#include "Engine/HitResult.h"
11+
#endif
612
#include "Camera/CameraComponent.h"
713
#include "PhysicsEngine/PhysicsSettings.h"
8-
#include "Runtime/Launch/Resources/Version.h"
914

1015
#if ENGINE_MAJOR_VERSION != 5 \
1116
|| ENGINE_MINOR_VERSION < 1

Source/UnrealLibretro/Private/LibretroContext.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#include "LibretroContext.h"
32
extern "C"
43
{
@@ -16,16 +15,16 @@ extern "C"
1615
#include "HAL/FileManager.h"
1716
#include "Misc/Paths.h"
1817
#include "TextureResource.h"
18+
#include "RenderingThread.h"
19+
#include "Runtime/Launch/Resources/Version.h"
1920

2021
#if PLATFORM_APPLE
2122
#include <dispatch/dispatch.h>
2223
#endif
2324

2425
#if PLATFORM_WINDOWS
2526
#include "Windows/AllowWindowsPlatformTypes.h"
26-
#include "Windows/PreWindowsApi.h"
2727
#include <d3d12.h>
28-
#include "Windows/PostWindowsApi.h"
2928
#include "Windows/HideWindowsPlatformTypes.h"
3029
#endif
3130

Source/UnrealLibretro/Private/LibretroContext.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ static_assert(RETRO_API_VERSION == 1, "Retro API version changed");
1313
#include "Engine/TextureRenderTarget2D.h"
1414
#include "UObject/WeakObjectPtrTemplates.h"
1515
#include "Containers/CircularQueue.h"
16+
#include "Containers/Queue.h"
17+
#include "RHIResources.h"
1618

1719
#include "LibretroInputDefinitions.h"
1820
#include "RawAudioSoundWave.h"
1921

2022
#if PLATFORM_WINDOWS
21-
#include "Windows/PreWindowsApi.h"
22-
#include "Windows/WindowsHWrapper.h"
23+
#include "Windows/AllowWindowsPlatformTypes.h"
2324
#endif
2425

2526
#include "ThirdParty/OpenGL/GL/glcorearb.h"
2627
#include "GL/extension_definitions.h"
2728

2829
#if PLATFORM_WINDOWS
29-
#include "Windows/PostWindowsApi.h"
30+
#include "Windows/HideWindowsPlatformTypes.h"
3031
#endif
3132

3233
DECLARE_STATS_GROUP(TEXT("UnrealLibretro"), STATGROUP_UnrealLibretro, STATCAT_Advanced);

Source/UnrealLibretro/Public/LibretroGameMode.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class UNREALLIBRETRO_API ALibretroGameMode : public AGameModeBase
2828
// @todo There is probably some smarter way of determining this
2929
// This returns true if you launch PIE in "VR Preview" mode
3030
// If you start your packaged game with the flag -vr then this will also be true
31-
static CONSTEXPR auto ShouldStartPlayerInVRPawn = UHeadMountedDisplayFunctionLibrary::IsHeadMountedDisplayEnabled;
31+
static constexpr auto ShouldStartPlayerInVRPawn = UHeadMountedDisplayFunctionLibrary::IsHeadMountedDisplayEnabled;
3232

3333
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Classes)
3434
TSubclassOf<APawn> DefaultVRPawnClass = ALibretroVRPawn::StaticClass();

Source/UnrealLibretro/Public/UnrealLibretro.h

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ static const struct { FString DistributionPath; FString Extension; FString Build
2727

2828
#if PLATFORM_WINDOWS
2929
#include "Windows/AllowWindowsPlatformTypes.h"
30-
#include "Windows/PreWindowsApi.h"
3130

3231
typedef HGLRC(WINAPI* PFN_wglCreateContext)(HDC);
3332
typedef BOOL(WINAPI* PFN_wglDeleteContext)(HGLRC);
@@ -62,7 +61,6 @@ static void* Win32GLGetProcAddress(const char* procname)
6261
return proc;
6362
}
6463

65-
#include "Windows/PostWindowsApi.h"
6664
#include "Windows/HideWindowsPlatformTypes.h"
6765
#endif
6866

0 commit comments

Comments
 (0)