From: Georg Veichtlbauer Date: Wed, 2 May 2018 14:31:47 +0000 (+0200) Subject: Correct command line parameter argument check. X-Git-Tag: 4000~80^2 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=f26fb85f846267c696ff5420fdd96bfdfddc6126;p=francis%2Fwinuae.git Correct command line parameter argument check. --- diff --git a/cfgfile.cpp b/cfgfile.cpp index 0d801655..d43aac1a 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -6670,7 +6670,7 @@ static void cmdpath (TCHAR *dst, const TCHAR *src, int maxsz) int parse_cmdline_option (struct uae_prefs *p, TCHAR c, const TCHAR *arg) { struct strlist *u = xcalloc (struct strlist, 1); - const TCHAR arg_required[] = _T("0123rKpImWSAJwNCZUFcblOdHRv"); + const TCHAR arg_required[] = _T("0123rKpImMWSRJwnvCZUFbclOdH"); if (_tcschr (arg_required, c) && ! arg) { write_log (_T("Missing argument for option `-%c'!\n"), c);