DEADSOFTWARE

removed debug output in wadreader
authorKetmar Dark <ketmar@ketmar.no-ip.org>
Fri, 22 Apr 2016 15:05:13 +0000 (18:05 +0300)
committerKetmar Dark <ketmar@ketmar.no-ip.org>
Fri, 22 Apr 2016 15:06:41 +0000 (18:06 +0300)
src/shared/wadreader.pas

index 1c5fb19e123bded268c49037fb551d2efac87d9f..b8f14db952daaa900e0a6e85ce8d669519ad3c7f 100644 (file)
@@ -304,19 +304,21 @@ begin
       if wantMap then
       begin
         goodMap := false;
-        e_WriteLog(Format('DFWAD: checking for good map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
+        //e_WriteLog(Format('DFWAD: checking for good map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
         try
           fs.readBuffer(sign, 3);
           goodMap := (sign = MAP_SIGNATURE);
+          {
           if goodMap then
             e_WriteLog(Format('  GOOD map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY)
           else
             e_WriteLog(Format('  BAD map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
+          }
         except
         end;
         if not goodMap then
         begin
-          e_WriteLog(Format('  not a map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
+          //e_WriteLog(Format('  not a map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
           fs.Free();
           continue;
         end;
@@ -349,7 +351,7 @@ begin
         end;
         if not goodMap then
         begin
-          e_WriteLog(Format('  not a map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
+          //e_WriteLog(Format('  not a map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
           FreeMem(pData);
           pData := nil;
           Len := 0;
@@ -391,7 +393,7 @@ begin
     fi := fIter.Files[f];
     if fi = nil then continue;
     if length(fi.name) = 0 then continue;
-    e_WriteLog(Format('DFWAD: checking for map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
+    //e_WriteLog(Format('DFWAD: checking for map in wad [%s], file [%s] (#%d)', [fFileName, fi.fname, f]), MSG_NOTIFY);
     if isMapResource(f) then
     begin
       s := removeExt(fi.name);