Print out all fields if -v -v is specified (double-verbose).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4363 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
fe6704dacb
commit
37de21efc7
1 changed files with 8 additions and 2 deletions
|
@ -1191,8 +1191,8 @@ strofs = (strofs+3)&~3;
|
|||
Sys_Error("structtype error");
|
||||
}
|
||||
|
||||
// if (verbose)
|
||||
// QCC_PrintFields();
|
||||
if (verbose >= 2)
|
||||
QCC_PrintFields();
|
||||
|
||||
switch(outputsttype)
|
||||
{
|
||||
|
@ -3170,6 +3170,12 @@ memset(pr_immediate_string, 0, sizeof(pr_immediate_string));
|
|||
memset(&extra_parms, 0, sizeof(extra_parms));
|
||||
#endif
|
||||
|
||||
for (p = 1; p<myargc; p++)
|
||||
{
|
||||
if ( !QC_strcasecmp("-v", myargv[p]) )
|
||||
verbose++;
|
||||
}
|
||||
|
||||
if ( QCC_CheckParm ("/?") || QCC_CheckParm ("?") || QCC_CheckParm ("-?") || QCC_CheckParm ("-help") || QCC_CheckParm ("--help"))
|
||||
{
|
||||
printf ("qcc looks for progs.src in the current directory.\n");
|
||||
|
|
Loading…
Reference in a new issue