X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=d21ea682a8582654038966b86800161fb985454c;hb=10f249cb763ddc00cd80e1d47940784e25d3e4a7;hp=87a3cf2697fee5b1c91918daf6c6d06b58341423;hpb=b73c60485dcb9ccb1ed2fd47437346fa6d3ef54b;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index 87a3cf2..d21ea68 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -3,17 +3,17 @@ // // Originally by David Raingeard (Cal2) // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) -// Cleanups/new stuff by James L. Hammons +// Cleanups/new stuff by James Hammons // (C) 2010 Underground Software // -// JLH = James L. Hammons +// JLH = James Hammons // // Who When What // --- ---------- ------------------------------------------------------------- // JLH 01/16/2010 Created this log ;-) // JLH 07/11/2011 Instead of dumping out on max log file size being reached, we // now just silently ignore any more output. 10 megs ought to be -// enough for anybody. ;-) +// enough for anybody. ;-) Except when it isn't. :-P // #include "log.h" @@ -22,8 +22,7 @@ #include #include "types.h" -//temp, 1GB, remove 2 zeroes -#define MAX_LOG_SIZE 1000000000 // Maximum size of log file (10 MB) +#define MAX_LOG_SIZE 10000000 // Maximum size of log file (10 MB) static FILE * log_stream = NULL; static uint32 logSize = 0;