mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 19:18:00 -05:00
Removed uses of raw c-string manipulation functions.
This commit is contained in:
@ -186,9 +186,9 @@ bool TryParse(const std::string &str, u32 *const output)
|
||||
|
||||
bool TryParse(const std::string &str, bool *const output)
|
||||
{
|
||||
if ("1" == str || !strcasecmp("true", str.c_str()))
|
||||
if ("1" == str || "true" == ToLower(str))
|
||||
*output = true;
|
||||
else if ("0" == str || !strcasecmp("false", str.c_str()))
|
||||
else if ("0" == str || "false" == ToLower(str))
|
||||
*output = false;
|
||||
else
|
||||
return false;
|
||||
@ -196,13 +196,6 @@ bool TryParse(const std::string &str, bool *const output)
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string StringFromInt(int value)
|
||||
{
|
||||
char temp[16];
|
||||
sprintf(temp, "%i", value);
|
||||
return temp;
|
||||
}
|
||||
|
||||
std::string StringFromBool(bool value)
|
||||
{
|
||||
return value ? "True" : "False";
|
||||
|
Reference in New Issue
Block a user