From f26fb85f846267c696ff5420fdd96bfdfddc6126 Mon Sep 17 00:00:00 2001 From: Georg Veichtlbauer Date: Wed, 2 May 2018 16:31:47 +0200 Subject: [PATCH] Correct command line parameter argument check. --- cfgfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3