mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Move Config ValueToString to StringUtil
An identical implementation is used by IniFile, so move those functions to StringUtil. A future commit will modify IniFile to use them.
This commit is contained in:
@ -103,7 +103,7 @@ void IniFile::Section::Set(const std::string& key, s64 newValue)
|
||||
|
||||
void IniFile::Section::Set(const std::string& key, bool newValue)
|
||||
{
|
||||
Set(key, StringFromBool(newValue));
|
||||
Set(key, ValueToString(newValue));
|
||||
}
|
||||
|
||||
bool IniFile::Section::Get(const std::string& key, std::string* value,
|
||||
|
Reference in New Issue
Block a user