(SYG): ignore EOF.

This commit is contained in:
morkt 2019-03-20 13:36:04 +04:00
parent e0f17747ae
commit c758bae342

View File

@ -61,8 +61,7 @@ namespace GameRes.Formats.WestVision
int pixel_count = (int)meta.Width * (int)meta.Height; int pixel_count = (int)meta.Width * (int)meta.Height;
var pixels = new byte[pixel_count * 3]; var pixels = new byte[pixel_count * 3];
stream.Position = 0x20; stream.Position = 0x20;
if (pixels.Length != stream.Read (pixels, 0, pixels.Length)) stream.Read (pixels, 0, pixels.Length);
throw new EndOfStreamException ("Unexpected end of file");
var format = PixelFormats.Bgr24; var format = PixelFormats.Bgr24;
if (meta.AlphaOffset != 0) if (meta.AlphaOffset != 0)
{ {