From c204b3176e705ceb7d2615c3c0dceba2d9eceb8d Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 17 Nov 2024 06:59:47 -0800 Subject: [PATCH] Fix a call that doesn't take a parameter --- alc/alc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alc/alc.cpp b/alc/alc.cpp index 1c510434df..05d8dc55fa 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -2315,7 +2315,7 @@ static size_t GetIntegerv(ALCdevice *device, ALCenum param, const al::span values[i++] = static_cast(device->getOutputMode1()); values[i++] = 0; - assert(i == NumAttrsForDevice(device)); + assert(i == NumAttrsForDevice()); return i; } alcSetError(device, ALC_INVALID_VALUE);