mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Changed: Use profile ID instead of index for -p parameter
This commit is contained in:
parent
5d38f4f14d
commit
7536d27fa6
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ void CMainWindow::onPlayClicked()
|
|||
|
||||
QStringList arguments;
|
||||
arguments << "-p";
|
||||
arguments << QString::number(profileIndex);
|
||||
arguments << profile.id;
|
||||
arguments << profile.arguments.split(' ');
|
||||
|
||||
bool started = QProcess::startDetached(executable, arguments);
|
||||
|
@ -115,7 +115,7 @@ void CMainWindow::onConfigureClicked()
|
|||
|
||||
QStringList arguments;
|
||||
arguments << "-p";
|
||||
arguments << QString::number(profileIndex);
|
||||
arguments << profile.id;
|
||||
|
||||
bool started = QProcess::startDetached(executable, arguments);
|
||||
|
||||
|
|
Loading…
Reference in a new issue