From bd192b2ac47d8b3d1934638799966a6109fc46f5 Mon Sep 17 00:00:00 2001 From: Panakotta00 Date: Sat, 26 Oct 2024 11:37:35 +0200 Subject: [PATCH] fix: Compile issue --- Source/FicsItNetworks/Public/Components/FINCommandPointMesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/FicsItNetworks/Public/Components/FINCommandPointMesh.h b/Source/FicsItNetworks/Public/Components/FINCommandPointMesh.h index d976df817..f77f189c7 100644 --- a/Source/FicsItNetworks/Public/Components/FINCommandPointMesh.h +++ b/Source/FicsItNetworks/Public/Components/FINCommandPointMesh.h @@ -65,7 +65,7 @@ USTRUCT(Blueprintable) struct FFINCommandLabelStructure { GENERATED_BODY() - FFINCommandLabelStructure(UObject* reference, int index, FString path, bool doUpdate, bool doUpdateText, FString text, FLinearColor color, EFINLabelPlacement placement) : reference(reference), path(path), index(index), vertical(vertical), doUpdate(doUpdate), doUpdateText(doUpdateText), text(text), textColor(color), placement(placement) {} + FFINCommandLabelStructure(UObject* reference, int index, FString path, bool doUpdate, bool doUpdateText, FString text, FLinearColor color, EFINLabelPlacement placement) : reference(reference), path(path), index(index), vertical(false), doUpdate(doUpdate), doUpdateText(doUpdateText), text(text), textColor(color), placement(placement) {} FFINCommandLabelStructure(UObject* reference, int index, FString path, bool vertical, bool doUpdate, bool doUpdateText, FString text, FLinearColor color) : reference(reference), path(path), index(index), vertical(vertical), doUpdate(doUpdate), doUpdateText(doUpdateText), text(text), textColor(color) { if(vertical) { placement = West;