From fad84a06fa3b450bd5129d9aeb722f4703037010 Mon Sep 17 00:00:00 2001 From: morkt Date: Tue, 19 Jun 2018 14:15:25 +0400 Subject: [PATCH] (YGA): added "epf" extension. --- Legacy/Yaneurao/ImageYGA.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Legacy/Yaneurao/ImageYGA.cs b/Legacy/Yaneurao/ImageYGA.cs index 98f132f5..fdee1854 100644 --- a/Legacy/Yaneurao/ImageYGA.cs +++ b/Legacy/Yaneurao/ImageYGA.cs @@ -43,6 +43,12 @@ namespace GameRes.Formats.Yaneurao public override string Description { get { return "Yaneurao image format"; } } public override uint Signature { get { return 0x616779; } } // 'yga' + public YgaFormat () + { + Extensions = new string[] { "yga", "epf" }; + Signatures = new uint[] { 0x616779, 0x667065 }; // 'epf' + } + public override ImageMetaData ReadMetaData (IBinaryStream file) { var header = file.ReadHeader (0x18);