X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=2782c930160ad1e8b3a042981ff90d8d8bf0d7b0;hb=6f25f63a18153bc2adc49c5f9a3862c2760716df;hp=d21ea682a8582654038966b86800161fb985454c;hpb=f30bf746981a99079e766b0d4e9de5391a4175ff;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index d21ea68..2782c93 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -29,7 +29,7 @@ static uint32 logSize = 0; int LogInit(const char * path) { - log_stream = fopen(path, "wrt"); + log_stream = fopen(path, "w"); if (log_stream == NULL) return 0; @@ -67,12 +67,11 @@ void WriteLog(const char * text, ...) if (logSize > MAX_LOG_SIZE) { + // Instead of dumping out, we just close the file and ignore any more output. fflush(log_stream); fclose(log_stream); - // Instead of dumping out, we just close the file and ignore any more output. log_stream = NULL; -// exit(1); - }//*/ + } va_end(arg); fflush(log_stream); // Make sure that text is written!