1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Don't replace spaces by underscore in romname.

This commit is contained in:
Sergey Lipskiy 2015-03-27 16:23:27 +06:00
parent 5459f942d0
commit 24dc02563e

View File

@ -80,7 +80,5 @@ EXPORT void CALL LoadConfig(const wchar_t * _strFileName)
EXPORT void CALL LoadCustomRomSettings(const wchar_t * _strFileName, const char * _romName)
{
QString romName(_romName);
romName = romName.replace(' ', '_');
loadCustomRomSettings(QString::fromWCharArray(_strFileName), romName);
loadCustomRomSettings(QString::fromWCharArray(_strFileName), _romName);
}