diff options
author | Chris Robinson <[email protected]> | 2013-05-27 13:16:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-27 13:16:17 -0700 |
commit | 334a7c1d59961277263a7a69575325aeef0987ee (patch) | |
tree | f96e8536a0e1a1e5e099ee00ffc76f51f0d4532d /Alc/effects/modulator.c | |
parent | 8d874512b6a1520dc9fbbe6322495e9e2da9dc3c (diff) |
Cleanup the ALeffectStateFactory_create methods
Get rid of the ALeffectStateFactory_create macro, and use the VCALL_NOARGS
helper (requires adding the 'this' factory parameter).
Diffstat (limited to 'Alc/effects/modulator.c')
-rw-r--r-- | Alc/effects/modulator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/modulator.c b/Alc/effects/modulator.c index a7b84d30..0a8a4512 100644 --- a/Alc/effects/modulator.c +++ b/Alc/effects/modulator.c @@ -205,9 +205,10 @@ static void ALmodulatorState_Delete(ALmodulatorState *state) DEFINE_ALEFFECTSTATE_VTABLE(ALmodulatorState); -static ALeffectState *ALmodulatorStateFactory_create(void) +static ALeffectState *ALmodulatorStateFactory_create(ALmodulatorStateFactory *factory) { ALmodulatorState *state; + (void)factory; state = malloc(sizeof(*state)); if(!state) return NULL; |