Change calls to GetNameStringByIndex to GetNameStringByValue.

This commit is contained in:
Marcel Pi 2025-01-03 15:47:00 +01:00
parent e375ff5af8
commit b9a56aff07
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ static FString PropSizeTypeToString(EPropSize PropSizeType)
{
return FString("unknown");
}
return ptr->GetNameStringByIndex(static_cast<int32>(PropSizeType));
return ptr->GetNameStringByValue(static_cast<int32>(PropSizeType));
}
static EPropSize StringToPropSizeType(FString PropSize)