mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
Nits.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5606 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2d6011859a
commit
b6a281eaff
@ -90,12 +90,12 @@ std::string* IniFile::Section::GetLine(const char* key, std::string* valueOut, s
|
|||||||
|
|
||||||
void IniFile::Section::Set(const char* key, const char* newValue)
|
void IniFile::Section::Set(const char* key, const char* newValue)
|
||||||
{
|
{
|
||||||
std::string value, comment;
|
std::string value, commented;
|
||||||
std::string* line = GetLine(key, &value, &comment);
|
std::string* line = GetLine(key, &value, &commented);
|
||||||
if (line)
|
if (line)
|
||||||
{
|
{
|
||||||
// Change the value - keep the key and comment
|
// Change the value - keep the key and comment
|
||||||
*line = StripSpaces(key) + " = " + newValue + comment;
|
*line = StripSpaces(key) + " = " + newValue + commented;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -261,7 +261,7 @@ bool TryParseBool(const char* str, bool* output)
|
|||||||
|
|
||||||
bool TryParseFloat(const char* str, float *output)
|
bool TryParseFloat(const char* str, float *output)
|
||||||
{
|
{
|
||||||
double d_val;
|
float d_val;
|
||||||
if (sscanf(str, "%f", &d_val) == 1)
|
if (sscanf(str, "%f", &d_val) == 1)
|
||||||
{
|
{
|
||||||
*output = (float)d_val;
|
*output = (float)d_val;
|
||||||
@ -275,7 +275,7 @@ bool TryParseFloat(const char* str, float *output)
|
|||||||
|
|
||||||
bool TryParseDouble(const char* str, double *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)
|
std::string StringFromInt(int value)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user