mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
(FlyingShinePdOpener): changed signature.
This commit is contained in:
parent
722d907504
commit
b2ab176ef3
@ -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"))
|
||||
|
Loading…
Reference in New Issue
Block a user