diff --git a/ArcFormats/Ikura/ArcGAN.cs b/ArcFormats/Ikura/ArcGAN.cs index 03f84a3e..0a0cf136 100644 --- a/ArcFormats/Ikura/ArcGAN.cs +++ b/ArcFormats/Ikura/ArcGAN.cs @@ -92,10 +92,13 @@ namespace GameRes.Formats.Ikura public readonly ImageMetaData Info; byte[][] Frames; + const uint DefaultWidth = 800; + const uint DefaultHeight = 600; + public GanFrameArchive (ArcView arc, ArchiveFormat impl, ICollection dir) : base (arc, impl, dir) { - Info = new ImageMetaData { Width = 640, Height = 480, BPP = 24 }; + Info = new ImageMetaData { Width = DefaultWidth, Height = DefaultHeight, BPP = 24 }; Frames = new byte[dir.Count][]; }