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()
bool URWTHVRUtilities::IsRoomMountedMode()
{
#if PLATFORM_SUPPORTS_CLUSTER
URWTHVRClusterUtilities::IsRoomMountedMode();
return URWTHVRClusterUtilities::IsRoomMountedMode();
#endif
return false;
}
......@@ -34,7 +34,7 @@ bool URWTHVRUtilities::IsRoomMountedMode()
bool URWTHVRUtilities::IsPrimaryNode()
{
#if PLATFORM_SUPPORTS_CLUSTER
URWTHVRClusterUtilities::IsPrimaryNode();
return URWTHVRClusterUtilities::IsPrimaryNode();
#endif
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment