Skip to content

Commit 5971d52

Browse files
- -norun now implies -stdout on Windows as it's useless without it
1 parent 54ee039 commit 5971d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/platform/win32/i_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ int DoMain (HINSTANCE hInstance)
158158
Args->AppendArg(FString(wargv[i]));
159159
}
160160

161-
if (Args->CheckParm("-stdout"))
161+
if (Args->CheckParm("-stdout") || Args->CheckParm("-norun"))
162162
{
163163
// As a GUI application, we don't normally get a console when we start.
164164
// If we were run from the shell and are on XP+, we can attach to its

0 commit comments

Comments
 (0)