aboutsummaryrefslogtreecommitdiffstats
path: root/al/auxeffectslot.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-02-08 09:39:56 -0800
committerChris Robinson <[email protected]>2022-02-08 09:39:56 -0800
commite2cdbf864fd407b36aa3a8d1c09622c0d6e930b7 (patch)
tree14a7c99bf3339fefe21a9721143a103587794518 /al/auxeffectslot.cpp
parent843cff0537ca07446ab01421ffc7aa6181414502 (diff)
Fix sign of ALeffectslot::eax_get_eax_default_lock's return type
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r--al/auxeffectslot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp
index d0487925..ad974483 100644
--- a/al/auxeffectslot.cpp
+++ b/al/auxeffectslot.cpp
@@ -1328,7 +1328,7 @@ GUID ALeffectslot::eax_get_eax_default_effect_guid() const noexcept
}
}
-unsigned long ALeffectslot::eax_get_eax_default_lock() const noexcept
+long ALeffectslot::eax_get_eax_default_lock() const noexcept
{
return eax_fx_slot_index_ < 2 ? EAXFXSLOT_LOCKED : EAXFXSLOT_UNLOCKED;
}