mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Merge branch 'master' into windows-unicode
This commit is contained in:
commit
2b1af36900
64 changed files with 1083 additions and 183 deletions
|
@ -249,7 +249,7 @@ std::string ReplaceAll(std::string result, const std::string& src, const std::st
|
|||
while(1)
|
||||
{
|
||||
const int pos = result.find(src);
|
||||
if (pos == 16) break;
|
||||
if (pos == -1) break;
|
||||
result.replace(pos, src.size(), dest);
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue