Add format note to SFFS, fix magic

This commit is contained in:
Matt Nadareski
2022-12-14 22:15:43 -08:00
parent adc9def0c9
commit 95dd670c7c
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ namespace BurnOutSharp.FileType
/// <summary>
/// StarForce Filesystem file
/// </summary>
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
public class SFFS : IScannable
{
/// <inheritdoc/>

View File

@@ -333,7 +333,7 @@ namespace BurnOutSharp.Tools
#region SFFS
// Found in Redump entry 81756, confirmed to be "StarForce Filesystem" by PiD.
if (magic.StartsWith(new byte?[] { 0x53, 0x46, 0x46, 0x53, 0x01, 0x00, 0x00, 0x00 }))
if (magic.StartsWith(new byte?[] { 0x53, 0x46, 0x46, 0x53 }))
return SupportedFileType.SFFS;
#endregion