(DrgIndexedFormat): changed Tag property.

This commit is contained in:
morkt 2015-06-14 14:30:01 +04:00
parent 30e7a470d3
commit 0bc57de734

View File

@ -428,15 +428,10 @@ namespace GameRes.Formats.DRS
[Export(typeof(ImageFormat))]
public class DrgIndexedFormat : ImageFormat
{
public override string Tag { get { return "DRG"; } }
public override string Tag { get { return "GGD"; } }
public override string Description { get { return "Digital Romance System indexed image format"; } }
public override uint Signature { get { return ~0x47363532u; } } // '256G'
public DrgIndexedFormat ()
{
Extensions = new string[] { "ggd" };
}
public override ImageMetaData ReadMetaData (Stream stream)
{
using (var input = new ArcView.Reader (stream))