Skip to content
Snippets Groups Projects
Commit 3ffad9df authored by David Gilbert's avatar David Gilbert :bug:
Browse files

fix(cave): Adjusts missing references from plugin separation, fixes missing return statement.

parent 20d8b4e2
No related branches found
No related tags found
2 merge requests!85UE5.3-2023.1-rc3,!84fix(cave): Adds BP_CaveSetup back to pawn
Pipeline #377996 passed
No preview for this file type
No preview for this file type
...@@ -26,7 +26,7 @@ bool URWTHVRUtilities::IsHeadMountedMode() ...@@ -26,7 +26,7 @@ bool URWTHVRUtilities::IsHeadMountedMode()
bool URWTHVRUtilities::IsRoomMountedMode() bool URWTHVRUtilities::IsRoomMountedMode()
{ {
#if PLATFORM_SUPPORTS_CLUSTER #if PLATFORM_SUPPORTS_CLUSTER
URWTHVRClusterUtilities::IsRoomMountedMode(); return URWTHVRClusterUtilities::IsRoomMountedMode();
#endif #endif
return false; return false;
} }
...@@ -34,7 +34,7 @@ bool URWTHVRUtilities::IsRoomMountedMode() ...@@ -34,7 +34,7 @@ bool URWTHVRUtilities::IsRoomMountedMode()
bool URWTHVRUtilities::IsPrimaryNode() bool URWTHVRUtilities::IsPrimaryNode()
{ {
#if PLATFORM_SUPPORTS_CLUSTER #if PLATFORM_SUPPORTS_CLUSTER
URWTHVRClusterUtilities::IsPrimaryNode(); return URWTHVRClusterUtilities::IsPrimaryNode();
#endif #endif
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment