Commit 5b4f8a38 authored by Bas Weelinck's avatar Bas Weelinck Committed by Alexandre Julliard

start: Ignore multiple quoted arguments as title.

parent 32ccc940
...@@ -224,7 +224,8 @@ int wmain (int argc, WCHAR *argv[]) ...@@ -224,7 +224,8 @@ int wmain (int argc, WCHAR *argv[])
* flags start with / and are case insensitive. * flags start with / and are case insensitive.
*/ */
for (i=1; i<argc; i++) { for (i=1; i<argc; i++) {
if (argv[i][0] == '"') { /* parse first quoted argument as console title */
if (!title && argv[i][0] == '"') {
title = argv[i]; title = argv[i];
continue; continue;
} }
......
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