Skip to content

Commit

Permalink
Fix a call that doesn't take a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat committed Nov 17, 2024
1 parent cb443d9 commit c204b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alc/alc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2315,7 +2315,7 @@ static size_t GetIntegerv(ALCdevice *device, ALCenum param, const al::span<int>
values[i++] = static_cast<ALCenum>(device->getOutputMode1());

values[i++] = 0;
assert(i == NumAttrsForDevice(device));
assert(i == NumAttrsForDevice());
return i;
}
alcSetError(device, ALC_INVALID_VALUE);
Expand Down

0 comments on commit c204b31

Please sign in to comment.