From 317ef8de4477e126ff90bb78acf3ecd3011194cc Mon Sep 17 00:00:00 2001 From: morkt Date: Tue, 29 May 2018 16:31:44 +0400 Subject: [PATCH] (MP3): increased sync search threshold. --- ArcFormats/AudioMP3.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/AudioMP3.cs b/ArcFormats/AudioMP3.cs index 3178fc43..e10faa94 100644 --- a/ArcFormats/AudioMP3.cs +++ b/ArcFormats/AudioMP3.cs @@ -94,7 +94,7 @@ namespace GameRes.Formats public override uint Signature { get { return 0; } } public override bool CanWrite { get { return false; } } - const int SyncSearchThreshold = 0x280; + const int SyncSearchThreshold = 0x300; public override SoundInput TryOpen (IBinaryStream file) {