Changed: Split all parameters for Ryzom client

--HG--
branch : develop
This commit is contained in:
kervala 2016-05-29 20:33:16 +02:00
parent 1e1dbaec5c
commit 304a1eac43

View file

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