aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary <me@thog.eu>2021-03-14 23:48:35 +0100
committerGitHub <noreply@github.com>2021-03-14 23:48:35 +0100
commit88d07080612ad3dd12d99ddbdfee33406ea7c8be (patch)
tree763768cff0076151845bf98ea25fb591880d2d2d
parent12b953dd57ff248de1f192873e3a9478225669da (diff)
Fix typo in assert in OpenAL implementation detail (#2106)
That one missing patch oops.
-rw-r--r--Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs b/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
index 7bca4427..055c608b 100644
--- a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
+++ b/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
@@ -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);
}