mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-24 05:17:46 +00:00
Merge pull request #20 from mariakeating/fix_args
Fixes unencrypted arguments passed to the game executable.
This commit is contained in:
commit
3b8f66be66
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ void LauncherCore::launchGame(const ProfileSettings& profile, const LoginAuth au
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString argFormat = profile.encryptArguments ? " /%1 =%2" : "%1=%2";
|
const QString argFormat = profile.encryptArguments ? " /%1 =%2" : " %1=%2";
|
||||||
|
|
||||||
QString argJoined;
|
QString argJoined;
|
||||||
for(const auto& arg : gameArgs) {
|
for(const auto& arg : gameArgs) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue