From b2ab176ef3174668f4e135130d08bfe0fb6b9ff1 Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 5 Mar 2015 17:37:57 +0400 Subject: [PATCH] (FlyingShinePdOpener): changed signature. --- ArcFormats/ArcPD.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ArcFormats/ArcPD.cs b/ArcFormats/ArcPD.cs index 1502737b..5978827a 100644 --- a/ArcFormats/ArcPD.cs +++ b/ArcFormats/ArcPD.cs @@ -223,12 +223,17 @@ namespace GameRes.Formats.Fs [Export(typeof(ArchiveFormat))] public class FlyingShinePdOpener : ArchiveFormat { - public override string Tag { get { return "PD"; } } + public override string Tag { get { return "PD/2"; } } public override string Description { get { return "Flying Shine resource archive version 2"; } } - public override uint Signature { get { return 0x69796c46; } } + public override uint Signature { get { return 0x69796c46; } } // 'Flyi' public override bool IsHierarchic { get { return false; } } public override bool CanCreate { get { return false; } } + public FlyingShinePdOpener () + { + Extensions = new string[] { "pd" }; + } + public override ArcFile TryOpen (ArcView file) { if (!file.View.AsciiEqual (4, "ngShinePDFile\0"))