(FlyingShinePdOpener): changed signature.

This commit is contained in:
morkt 2015-03-05 17:37:57 +04:00
parent 722d907504
commit b2ab176ef3

View File

@ -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"))