diff options
author | Boris I. Bendovsky <[email protected]> | 2022-07-14 19:59:13 +0300 |
---|---|---|
committer | Boris I. Bendovsky <[email protected]> | 2022-07-17 20:58:55 +0300 |
commit | e9bb078806f7b34d7214cd9b9a50d0deeea9c0c5 (patch) | |
tree | d548b9eacbceb945cf6e444ee154499f6cc0909c /al/auxeffectslot.cpp | |
parent | 7b0776e33f84056179275a4a42cae7dbef9d6a71 (diff) |
[EAX_FX_SLOT] Fix EAXGet for EAX5
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r-- | al/auxeffectslot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp index 162b5137..4cc26f0a 100644 --- a/al/auxeffectslot.cpp +++ b/al/auxeffectslot.cpp @@ -1275,7 +1275,7 @@ void ALeffectslot::eax_fx_slot_get(const EaxCall& call) const switch(call.get_version()) { case 4: eax4_fx_slot_get(call, eax4_.i); break; - case 5: eax4_fx_slot_get(call, eax5_.i); break; + case 5: eax5_fx_slot_get(call, eax5_.i); break; default: eax_fail_unknown_version(); } } |