mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-19 16:51:38 +00:00
More asterisks
This commit is contained in:
parent
78aa398e7c
commit
3e283ea9f1
33 changed files with 140 additions and 140 deletions
|
@ -145,7 +145,7 @@ std::string StringFromFormatV(const char* format, va_list args)
|
|||
}
|
||||
|
||||
// For Debugging. Read out an u8 array.
|
||||
std::string ArrayToString(const u8 *data, u32 size, int line_len, bool spaces)
|
||||
std::string ArrayToString(const u8* data, u32 size, int line_len, bool spaces)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << std::setfill('0') << std::hex;
|
||||
|
@ -188,7 +188,7 @@ std::string StripQuotes(const std::string& s)
|
|||
return s;
|
||||
}
|
||||
|
||||
bool TryParse(const std::string &str, u32 *const output)
|
||||
bool TryParse(const std::string &str, u32* const output)
|
||||
{
|
||||
char* endptr = nullptr;
|
||||
|
||||
|
@ -213,7 +213,7 @@ bool TryParse(const std::string &str, u32 *const output)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool TryParse(const std::string &str, bool *const output)
|
||||
bool TryParse(const std::string &str, bool* const output)
|
||||
{
|
||||
if ("1" == str || !strcasecmp("true", str.c_str()))
|
||||
*output = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue