diff -r cf4a9632e649 -r 4e91a7050add hedgewars/uStore.pas --- a/hedgewars/uStore.pas Mon Aug 19 09:11:49 2019 -0400 +++ b/hedgewars/uStore.pas Mon Aug 19 18:06:46 2019 +0300 @@ -433,7 +433,10 @@ tmpsurf := LoadDataImageAltPath(Path, AltPath, FileName, imflags); if (tmpsurf <> nil) and checkSum then for y := 0 to tmpsurf^.h-1 do - syncedPixelDigest:= Adler32Update(syncedPixelDigest, @PByteArray(tmpsurf^.pixels)^[y*tmpsurf^.pitch], tmpsurf^.w*4) + begin + syncedPixelDigest:= Adler32Update(syncedPixelDigest, @PByteArray(tmpsurf^.pixels)^[y*tmpsurf^.pitch], tmpsurf^.w*4); + AddFileLog(FileName + ': ' + IntToStr(syncedPixelDigest)); + end; end; if tmpsurf <> nil then