git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5606 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2010-06-04 20:54:13 +00:00
parent 2d6011859a
commit b6a281eaff
2 changed files with 5 additions and 5 deletions

View file

@ -261,7 +261,7 @@ bool TryParseBool(const char* str, bool* output)
bool TryParseFloat(const char* str, float *output)
{
double d_val;
float d_val;
if (sscanf(str, "%f", &d_val) == 1)
{
*output = (float)d_val;
@ -275,7 +275,7 @@ bool TryParseFloat(const char* str, float *output)
bool TryParseDouble(const char* str, double *output)
{
return sscanf(str, "%f", output) == 1;
return sscanf(str, "%lf", output) == 1;
}
std::string StringFromInt(int value)