From ee978890b85bc9a74ea320daf0ad51fd0183683b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 29 Jul 2005 23:47:11 +0000 Subject: [PATCH] What? --- compiler/libpc300/sc1.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/compiler/libpc300/sc1.c b/compiler/libpc300/sc1.c index 3aff2ed6..2fff3a93 100755 --- a/compiler/libpc300/sc1.c +++ b/compiler/libpc300/sc1.c @@ -819,9 +819,13 @@ static void initglobals(void) errnum=0; /* number of errors */ warnnum=0; /* number of warnings */ optproccall=TRUE; /* support "procedure call" */ +#if PAWN_CELL_SIZE==32 verbosity=1; /* verbosity level, no copyright banner */ +#else + verbosity=0; +#endif sc_debug=sCHKBOUNDS|sSYMBOLIC; /* by default: bounds checking+assertions */ - sc_packstr=TRUE; /* strings are unpacked by default */ + sc_packstr=FALSE; /* strings are unpacked by default */ sc_compress=FALSE; sc_needsemicolon=FALSE;/* semicolon required to terminate expressions? */ sc_dataalign=sizeof(cell); @@ -1274,7 +1278,9 @@ static void setconfig(char *root) static void setcaption(void) { +#if 0 pc_printf("Pawn compiler " VERSION_STR "\t\t\tCopyright (c) 1997-2005, ITB CompuPhase\n\n"); +#endif } static void about(void)