Skip to content
Snippets Groups Projects
Commit db7f7464 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Changed Compare function to equal function

parent 507e24ef
No related branches found
No related tags found
2 merge requests!8Develop,!7Feature/platform distinction
......@@ -184,7 +184,7 @@ void ACAVEOverlayController::BeginPlay()
//Read situation
if (IDisplayCluster::Get().GetOperationMode() == EDisplayClusterOperationMode::Cluster) {
auto ClusterConfigCustom = IDisplayCluster::Get().GetConfigMgr()->GetConfigCustom();
bCAVE_Mode = ClusterConfigCustom.Args.Contains("Hardware_Platform") && ClusterConfigCustom.Args.Find("Hardware_Platform")->ToLower().Compare("aixcave");
bCAVE_Mode = ClusterConfigCustom.Args.Contains("Hardware_Platform") && ClusterConfigCustom.Args.Find("Hardware_Platform")->Equals("aixcave", ESearchCase::IgnoreCase);
}
if (!bCAVE_Mode) return; // Not our business
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment