mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:51:44 +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
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
AL.DeleteBuffers(bufferIds);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue