Skip to content

Commit 2d1b44a

Browse files
Update GameStateRunActivity.cs
{ and } of if on separate lines
1 parent d7a19ee commit 2d1b44a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Source/RunActivity/Viewer3D/Processes/GameStateRunActivity.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,9 +823,11 @@ void InitLogging(UserSettings settings, string[] args, bool appendLog)
823823
string debugArgline = "";
824824
foreach (var arg in args)
825825
{
826-
if (arg.Contains(" ")) {
826+
if (arg.Contains(" "))
827+
{
827828
debugArgline += "\"" + arg + "\" ";
828-
} else
829+
}
830+
else
829831
{
830832
debugArgline += arg + " ";
831833
}

0 commit comments

Comments
 (0)