Moved verbose output to a shared module in the common/ directory.

git-svn-id: svn://svn.cc65.org/cc65/trunk@619 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-03-10 10:21:03 +00:00
parent d10079ccdc
commit 1eff067ff9
28 changed files with 53 additions and 76 deletions

View File

@@ -42,6 +42,7 @@
#include "cmdline.h"
#include "libdefs.h"
#include "objdefs.h"
#include "print.h"
#include "target.h"
#include "version.h"
#include "xmalloc.h"
@@ -351,7 +352,7 @@ int main (int argc, char* argv [])
case 'v':
switch (Arg [2]) {
case 'm': VerboseMap = 1; break;
case '\0': ++Verbose; break;
case '\0': ++Verbosity; break;
default: UnknownOption (Arg);
}
break;
@@ -426,7 +427,7 @@ int main (int argc, char* argv [])
}
/* Dump the data for debugging */
if (Verbose > 1) {
if (Verbosity > 1) {
SegDump ();
ConDesDump ();
}