Skip to content
Snippets Groups Projects
Commit 5b4f8a38 authored by Bas Weelinck's avatar Bas Weelinck Committed by Alexandre Julliard
Browse files

start: Ignore multiple quoted arguments as title.

parent 32ccc940
Branches
Tags
No related merge requests found
......@@ -224,7 +224,8 @@ int wmain (int argc, WCHAR *argv[])
* flags start with / and are case insensitive.
*/
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];
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment