From: Ketmar Dark Date: Fri, 22 Apr 2016 15:05:13 +0000 (+0300) Subject: removed debug output in wadreader X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=997a94053b44d7b4c6e149cd3e50463386ef730c removed debug output in wadreader --- diff --git a/src/shared/wadreader.pas b/src/shared/wadreader.pas index 1c5fb19..b8f14db 100644 --- a/src/shared/wadreader.pas +++ b/src/shared/wadreader.pas @@ -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);