(TifFormat.Parser): fixed.

This commit is contained in:
morkt 2016-12-15 20:05:45 +04:00
parent 8ffe411583
commit 82bfbd7398

View File

@ -140,7 +140,7 @@ namespace GameRes
ReadUInt32 = () => m_file.ReadUInt32();
ReadUInt64 = () => m_file.ReadUInt64();
}
m_first_ifd = ReadUInt32();
m_first_ifd = file.ReadHeader (8).ToUInt32 (4);
}
public long FindLastIFD ()