Fix warnings.

This commit is contained in:
Glenn Maynard
2003-09-15 07:14:39 +00:00
parent d44194405a
commit 6af0aa81c9
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -530,11 +530,11 @@ float ScreenPlayerOptions::ConvertModToNumber(CString value)
{
if (IsModTimeSpacing(value))
{
return atof(value.c_str() + 1 );
return (float) atof(value.c_str() + 1 );
}
else
{
return atof(value.c_str() );
return (float) atof(value.c_str() );
}
}