Changed: Split all parameters for Ryzom client

This commit is contained in:
kervala 2016-05-29 20:33:16 +02:00
parent b0537df2e1
commit f9150c850f

View file

@ -87,7 +87,7 @@ void CMainWindow::onPlayClicked()
QStringList arguments;
arguments << "-p";
arguments << QString::number(profileIndex);
arguments << profile.arguments;
arguments << profile.arguments.split(' ');
bool started = QProcess::startDetached(profile.executable, arguments);