Diff for /np2/win9xc/trace.cpp between versions 1.8 and 1.9

version 1.8, 2004/03/06 18:25:36 version 1.9, 2004/03/07 01:23:14
Line 344  void trace_fmt2(const char *fmt, ...) { Line 344  void trace_fmt2(const char *fmt, ...) {
         }          }
 }  }
   
   void trace_fileout(const char *fname) {
   
           if (tracewin.fh != FILEH_INVALID) {
                   file_close(tracewin.fh);
                   tracewin.fh = FILEH_INVALID;
           }
           if (fname) {
                   tracewin.fh = file_create_c(fname);
           }
   }
   
 #endif  #endif
   

Removed from v.1.8  
changed lines
  Added in v.1.9


RetroPC.NET-CVS <cvs@retropc.net>