diff options
author | Chris Robinson <[email protected]> | 2013-05-21 13:02:56 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-21 13:02:56 -0700 |
commit | eaccaa50284da45401d841a867a7a10daa00dbd0 (patch) | |
tree | 0f6a62e6e13adf982a00175354a288d5e02b9e58 /Alc/alcDedicated.c | |
parent | a5d94f5d09be24bf34cbf8433a288cfd9ca396fb (diff) |
Rename the effect state's Destroy method to Destruct
Diffstat (limited to 'Alc/alcDedicated.c')
-rw-r--r-- | Alc/alcDedicated.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alcDedicated.c b/Alc/alcDedicated.c index fbe2a5f1..dd59c2c5 100644 --- a/Alc/alcDedicated.c +++ b/Alc/alcDedicated.c @@ -43,7 +43,7 @@ typedef struct ALdedicatedState { } ALdedicatedState; -static ALvoid ALdedicatedState_Destroy(ALdedicatedState *state) +static ALvoid ALdedicatedState_Destruct(ALdedicatedState *state) { (void)state; } @@ -111,7 +111,7 @@ ALeffectState *ALdedicatedStateFactory_create(void) static ALvoid ALdedicatedStateFactory_destroy(ALeffectState *effect) { ALdedicatedState *state = STATIC_UPCAST(ALdedicatedState, ALeffectState, effect); - ALdedicatedState_Destroy(state); + ALdedicatedState_Destruct(state); free(state); } |