mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 08:39:00 +00:00
Fix IniFile to use string& instead of char*
Also removes .c_str() usages where found.
This commit is contained in:
parent
079b1ba93d
commit
3fe05e0a9f
17 changed files with 205 additions and 218 deletions
|
@ -246,7 +246,7 @@ void LogInfo(const char *format, ...)
|
|||
{
|
||||
std::string text = temp;
|
||||
text += '\n';
|
||||
arLog.push_back(text.c_str());
|
||||
arLog.push_back(text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue