aboutsummaryrefslogtreecommitdiffstats
path: root/al/effects/effects.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-12-23 22:51:54 -0800
committerChris Robinson <[email protected]>2023-12-23 22:51:54 -0800
commit29a1001a22891294ab63102e8868bdea52eb7b93 (patch)
tree9379a61ed37e1fb4b4a2235a72914efeae9292fa /al/effects/effects.h
parent28744c0418749dd8b2d1eb191280c881faad00bb (diff)
Use separate structs for the dedicated dialog/lfe effects
Diffstat (limited to 'al/effects/effects.h')
-rw-r--r--al/effects/effects.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/al/effects/effects.h b/al/effects/effects.h
index 66fc8c44..2e49eb00 100644
--- a/al/effects/effects.h
+++ b/al/effects/effects.h
@@ -64,7 +64,8 @@ extern const EffectProps FshifterEffectProps;
extern const EffectProps ModulatorEffectProps;
extern const EffectProps PshifterEffectProps;
extern const EffectProps VmorpherEffectProps;
-extern const EffectProps DedicatedEffectProps;
+extern const EffectProps DedicatedDialogEffectProps;
+extern const EffectProps DedicatedLfeEffectProps;
extern const EffectProps ConvolutionEffectProps;
/* Vtables to get/set properties for the given effect types. */
@@ -82,7 +83,8 @@ extern const EffectVtable FshifterEffectVtable;
extern const EffectVtable ModulatorEffectVtable;
extern const EffectVtable PshifterEffectVtable;
extern const EffectVtable VmorpherEffectVtable;
-extern const EffectVtable DedicatedEffectVtable;
+extern const EffectVtable DedicatedDialogEffectVtable;
+extern const EffectVtable DedicatedLfeEffectVtable;
extern const EffectVtable ConvolutionEffectVtable;
#endif /* AL_EFFECTS_EFFECTS_H */