mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Fix typo in assert in OpenAL implementation detail (#2106)
That one missing patch oops.
This commit is contained in:
parent
12b953dd57
commit
88d0708061
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue