Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Fix compilation for UE 4.20 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
ufna committed Jun 14, 2019
1 parent 994b956 commit 081f154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/VaRestEditorPlugin/Private/VaRest_BreakJson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ void UVaRest_MakeJson::CreateProjectionPins(UEdGraphPin* Source)
UEdGraphPin* InputPin = CreatePin(EGPD_Input, Type, TEXT(""), Subtype, FName(*(*it).Name), InputPinParams);

#if ENGINE_MINOR_VERSION >= 20
InputPin->SetSavePidfnIfOrphaned(false);
InputPin->SetSavePinIfOrphaned(false);
#else
InputPin->bSavePinIfOrphaned = false;
#endif
Expand Down

0 comments on commit 081f154

Please sign in to comment.