mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-04 09:08:42 +00:00
Compare commits
1 Commits
0.6.16
...
feature/li
Author | SHA1 | Date | |
---|---|---|---|
|
3bdf63b0ee |
@@ -304,6 +304,10 @@ QString RemoveInvalidFilenameChars(QString string, QChar replaceWith)
|
|||||||
{
|
{
|
||||||
string[i] = replaceWith;
|
string[i] = replaceWith;
|
||||||
}
|
}
|
||||||
|
else if(string[i] > 127) // non ASCII
|
||||||
|
{
|
||||||
|
string[i] = replaceWith;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return string;
|
return string;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user