Commit 60ef0f86 authored by Olivier F. R. Dierick's avatar Olivier F. R. Dierick Committed by Alexandre Julliard

dxdiag: Ignore option /64bit on the commandline.

The builtin dxdiag doesn't know about option /64bit and display an error dialog. Some games use that option internally on startup and the dialog is annoying. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49964
parent 32cec5e6
......@@ -159,6 +159,12 @@ static BOOL process_command_line(const WCHAR *cmdline, struct command_line_info
break;
case '6':
if (wcsnicmp(cmdline, L"64bit", 5))
return FALSE;
cmdline += 5;
break;
case 'd':
case 'D':
if (wcsnicmp(cmdline, L"dontskip", 8))
......
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