- let "" be synonymous with 'none' in ZScript.
This commit is contained in:
parent
62a259bb36
commit
30a2171080
2 changed files with 6 additions and 2 deletions
|
|
@ -192,7 +192,11 @@ struct ExpVal
|
|||
|
||||
FName GetName() const
|
||||
{
|
||||
if (Type == TypeString) return FName(*(FString *)&pointer);
|
||||
if (Type == TypeString)
|
||||
{
|
||||
if (((FString *)&pointer)->Len() == 0) return NAME_None;
|
||||
return FName(*(FString *)&pointer);
|
||||
}
|
||||
return Type == TypeName ? ENamedName(Int) : NAME_None;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue