CTextParser: Resolve double->float truncation within ParseTag()

This should be prepended with the f suffix to prevent double to float
implicit truncation.
This commit is contained in:
Lioncash 2020-01-29 02:26:47 -05:00
parent 7b89a165bf
commit 03f2ebc768
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void CTextParser::ParseTag(CTextExecuteBuffer& out, const char16_t* str, int len
out.AddColorOverride(val, color);
}
} else if (BeginsWith(str, len, u"line-spacing=")) {
out.AddLineSpacing(ParseInt(str + 13, len - 13, true) / 100.0);
out.AddLineSpacing(ParseInt(str + 13, len - 13, true) / 100.0f);
} else if (BeginsWith(str, len, u"line-extra-space=")) {
out.AddLineExtraSpace(ParseInt(str + 17, len - 17, true));
} else if (BeginsWith(str, len, u"just=")) {