[Atsoft-commit] CVS: dcgen/hdr generator.h,1.2,1.3
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-04-08 16:39:11
|
Update of /cvsroot/atsoft/dcgen/hdr In directory usw-pr-cvs1:/tmp/cvs-serv12097/hdr Modified Files: generator.h Log Message: Makefile.prefab: moved "-finline-funcs" optimization flag to the default set of "RELEASE" flags. vdp.c: cleaned up and sped up some sections of code. mem68k.c: cleanedup and sped up memory reading. ui-kos.c: general code cleanup, worked out the correct values for the palette code, colors are a bit dark but are correct. uip-kos.c: made it so it could compile again. fm.c: general warnings cleanup (removed logging calls). gensoundp-kos.c: general warnings cleanup. Index: generator.h =================================================================== RCS file: /cvsroot/atsoft/dcgen/hdr/generator.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** generator.h 24 Jan 2002 01:28:33 -0000 1.2 --- generator.h 8 Apr 2002 01:15:32 -0000 1.3 *************** *** 178,193 **** #ifdef NOLOGGING ! # define LOG_DEBUG3(x) /* */ ! # define LOG_DEBUG2(x) /* */ ! # define LOG_DEBUG1(x) /* */ ! # define LOG_USER(x) /* */ ! # define LOG_VERBOSE(x) /* */ ! # define LOG_NORMAL(x) /* */ ! # define LOG_CRITICAL(x) /* */ ! # define LOG_REQUEST(x) /* */ #else ! # define LOG_DEBUG3(x) /* ui_log_debug3 ## x */ ! # define LOG_DEBUG2(x) /* ui_log_debug2 ## x */ ! # define LOG_DEBUG1(x) /* ui_log_debug1 ## x */ # define LOG_USER(x) ui_log_user ## x # define LOG_VERBOSE(x) ui_log_verbose ## x --- 178,193 ---- #ifdef NOLOGGING ! # define LOG_DEBUG3(x) /* x */ ! # define LOG_DEBUG2(x) /* x */ ! # define LOG_DEBUG1(x) /* x */ ! # define LOG_USER(x) /* x */ ! # define LOG_VERBOSE(x) /* x */ ! # define LOG_NORMAL(x) /* x */ ! # define LOG_CRITICAL(x) /* x */ ! # define LOG_REQUEST(x) /* x */ #else ! # define LOG_DEBUG3(x) ui_log_debug3 ## x ! # define LOG_DEBUG2(x) ui_log_debug2 ## x ! # define LOG_DEBUG1(x) ui_log_debug1 ## x # define LOG_USER(x) ui_log_user ## x # define LOG_VERBOSE(x) ui_log_verbose ## x |