MeasureString: Changed floating-point conversion function to CRT function

This commit is contained in:
Brian Ferguson 2014-01-03 12:00:00 -07:00
parent d606ce0170
commit 38a3fdcece

View File

@ -54,7 +54,7 @@ void MeasureString::ReadOptions(ConfigParser& parser, const WCHAR* section)
*/ */
void MeasureString::UpdateValue() void MeasureString::UpdateValue()
{ {
m_Value = std::stod(m_String); m_Value = _wtof(m_String.c_str());
} }
/* /*