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:
zeromus 2011-06-09 06:56:23 +00:00
parent 2fcb35a4e4
commit b66cb2a28c
1 changed files with 4 additions and 1 deletions

View File

@ -493,7 +493,10 @@ namespace SevenZip
{"4D-5A", InArchiveFormat.PE},
{"7F-45-4C-46", InArchiveFormat.Elf},
{"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
internal static Dictionary<InArchiveFormat, string> InSignatureFormatsReversed;