1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00

Slight adjustments to the non-auth launch parameters

This commit is contained in:
Joshua Goins 2024-06-27 20:31:41 -04:00
parent 2ab5a85741
commit fa01b420d4

View file

@ -175,8 +175,8 @@ QString GameRunner::getGameArgs(const Profile &profile, const std::optional<Logi
gameArgs.push_back({QStringLiteral("SYS.Region"), QString::number(auth->region)});
} else {
// fallback just needed to get to the title screen
gameArgs.push_back({QStringLiteral("DEV.MaxEntitledExpansionID"), QString::number(1)});
gameArgs.push_back({QStringLiteral("DEV.TestSID"), QString::number(1)});
gameArgs.push_back({QStringLiteral("DEV.MaxEntitledExpansionID"), QString::number(2)});
gameArgs.push_back({QStringLiteral("DEV.TestSID"), QString::number(0)});
gameArgs.push_back({QStringLiteral("SYS.Region"), QString::number(1)});
}
}