Fix typo in assert in OpenAL implementation detail (#2106)

That one missing patch oops.
This commit is contained in:
Mary
2021-03-14 23:48:35 +01:00
committed by GitHub
parent 12b953dd57
commit 88d0708061

View File

@ -176,7 +176,7 @@ namespace Ryujinx.Audio.Backends.OpenAL
}
}
Debug.Assert(i < bufferIds.Length, "Unknown buffer id");
Debug.Assert(i == bufferIds.Length, "Unknown buffer ids found!");
AL.DeleteBuffers(bufferIds);
}