add file signature to 7z wrapper code for iNES format so it can't be mis-recognized (castlevania 3 apparently resembles a tar file for some reason)
This commit is contained in:
parent
2fcb35a4e4
commit
b66cb2a28c
|
@ -493,7 +493,10 @@ namespace SevenZip
|
||||||
{"4D-5A", InArchiveFormat.PE},
|
{"4D-5A", InArchiveFormat.PE},
|
||||||
{"7F-45-4C-46", InArchiveFormat.Elf},
|
{"7F-45-4C-46", InArchiveFormat.Elf},
|
||||||
{"78", InArchiveFormat.Dmg},
|
{"78", InArchiveFormat.Dmg},
|
||||||
{"63-6F-6E-65-63-74-69-78", InArchiveFormat.Vhd}};
|
{"63-6F-6E-65-63-74-69-78", InArchiveFormat.Vhd},
|
||||||
|
{"4E-45-53", InArchiveFormat.None}
|
||||||
|
};
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
internal static Dictionary<InArchiveFormat, string> InSignatureFormatsReversed;
|
internal static Dictionary<InArchiveFormat, string> InSignatureFormatsReversed;
|
||||||
|
|
Loading…
Reference in New Issue