diff --git a/Source/SonicAudioLib/Archives/CriAfs2Archive.cs b/Source/SonicAudioLib/Archives/CriAfs2Archive.cs index 47e5803..8968996 100644 --- a/Source/SonicAudioLib/Archives/CriAfs2Archive.cs +++ b/Source/SonicAudioLib/Archives/CriAfs2Archive.cs @@ -53,7 +53,7 @@ namespace SonicAudioLib.Archives uint information = DataStream.ReadUInt32(source); uint type = information & 0xFF; - if (type != 1) + if (type != 1 && type != 2) { throw new InvalidDataException($"Unknown AFS2 type ({type}). Please report this error with the file(s)."); }