mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Remove extraneous semicolons from string concat in sdklauncher
This commit is contained in:
parent
036d2e8e80
commit
65f17cfa8e
@ -367,7 +367,7 @@ bool CLauncher::Setup(eLaunchMode lMode, eLaunchState lState)
|
|||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << cfgFile.rdbuf();
|
ss << cfgFile.rdbuf();
|
||||||
svCmdLineArgs = ss.str(); +"-launcher";
|
svCmdLineArgs = ss.str() +"-launcher";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -390,7 +390,7 @@ bool CLauncher::Setup(eLaunchMode lMode, eLaunchState lState)
|
|||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << cfgFile.rdbuf();
|
ss << cfgFile.rdbuf();
|
||||||
svCmdLineArgs = ss.str(); +"-launcher";
|
svCmdLineArgs = ss.str() +"-launcher";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -413,7 +413,7 @@ bool CLauncher::Setup(eLaunchMode lMode, eLaunchState lState)
|
|||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << cfgFile.rdbuf();
|
ss << cfgFile.rdbuf();
|
||||||
svCmdLineArgs = ss.str(); +"-launcher";
|
svCmdLineArgs = ss.str() +"-launcher";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user