Commit c5bceecb authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

start.exe: STARTUPINFOW needs the STARTF_USESHOWWINDOW flag.

parent 22a4b3fc
......@@ -581,6 +581,7 @@ int __cdecl wmain (int argc, WCHAR *argv[])
ZeroMemory(&startup_info, sizeof(startup_info));
startup_info.cb = sizeof(startup_info);
startup_info.wShowWindow = sei.nShow;
startup_info.dwFlags |= STARTF_USESHOWWINDOW;
startup_info.lpTitle = title;
if (!CreateProcessW(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment