From 0d2eeda9c1beef88c107fb4bf4e19f95ceb6411f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 17 Jul 2022 16:48:56 -0700 Subject: Fix parameter signedness --- al/source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'al/source.cpp') diff --git a/al/source.cpp b/al/source.cpp index 8856bafc..842dbd67 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -4520,7 +4520,7 @@ void ALsource::eax_set(const EaxCall& call) eax_version_ = eax_version; } -void ALsource::eax_get_active_fx_slot_id(const EaxCall& call, const GUID* ids, int max_count) +void ALsource::eax_get_active_fx_slot_id(const EaxCall& call, const GUID* ids, size_t max_count) { assert(ids != nullptr); assert(max_count == EAX40_MAX_ACTIVE_FXSLOTS || max_count == EAX50_MAX_ACTIVE_FXSLOTS); -- cgit v1.2.3