diff options
author | Chris Robinson <[email protected]> | 2008-07-22 14:29:27 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-07-22 14:29:27 -0700 |
commit | 93c0f61050dbe15e692e567a208bd0c60d60b4dd (patch) | |
tree | 954feceb29f33dc5b135810c2a5f3a1b6e810c85 /OpenAL32 | |
parent | 3a8c543f8bb814216fd3f68e4116e63b6d46215f (diff) |
Clarify implicit destruction warnings
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.c | 2 | ||||
-rw-r--r-- | OpenAL32/alBuffer.c | 2 | ||||
-rw-r--r-- | OpenAL32/alEffect.c | 2 | ||||
-rw-r--r-- | OpenAL32/alFilter.c | 2 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index 7f073435..23765cf6 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -522,7 +522,7 @@ ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context) { #ifdef _DEBUG if(Context->AuxiliaryEffectSlotCount > 0) - AL_PRINT("alcDestroyContext(): %d AuxiliaryEffectSlot(s) NOT deleted\n", Context->AuxiliaryEffectSlotCount); + AL_PRINT("alcDestroyContext(): deleting %d AuxiliaryEffectSlot(s)\n", Context->AuxiliaryEffectSlotCount); #endif while(Context->AuxiliaryEffectSlot) diff --git a/OpenAL32/alBuffer.c b/OpenAL32/alBuffer.c index 8934f878..15fe4184 100644 --- a/OpenAL32/alBuffer.c +++ b/OpenAL32/alBuffer.c @@ -1090,7 +1090,7 @@ ALvoid ReleaseALBuffers(ALvoid) #ifdef _DEBUG if(g_uiBufferCount > 0) - AL_PRINT("exit() %d Buffer(s) NOT deleted\n", g_uiBufferCount); + AL_PRINT("exit(): deleting %d Buffer(s)\n", g_uiBufferCount); #endif ALBuffer = g_pBuffers; diff --git a/OpenAL32/alEffect.c b/OpenAL32/alEffect.c index abdca3ea..1093efa8 100644 --- a/OpenAL32/alEffect.c +++ b/OpenAL32/alEffect.c @@ -590,7 +590,7 @@ ALvoid ReleaseALEffects(ALvoid) { #ifdef _DEBUG if(g_EffectCount > 0) - AL_PRINT("exit() %d Effect(s) NOT deleted\n", g_EffectCount); + AL_PRINT("exit(): deleting %d Effect(s)\n", g_EffectCount); #endif while(g_EffectList) diff --git a/OpenAL32/alFilter.c b/OpenAL32/alFilter.c index 2a0e6973..89acb414 100644 --- a/OpenAL32/alFilter.c +++ b/OpenAL32/alFilter.c @@ -399,7 +399,7 @@ ALvoid ReleaseALFilters(ALvoid) { #ifdef _DEBUG if(g_FilterCount > 0) - AL_PRINT("exit() %d Filter(s) NOT deleted\n", g_FilterCount); + AL_PRINT("exit(): deleting %d Filter(s)\n", g_FilterCount); #endif while(g_FilterList) diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 35caec8a..89212933 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -2290,7 +2290,7 @@ ALvoid ReleaseALSources(ALCcontext *Context) { #ifdef _DEBUG if(Context->SourceCount > 0) - AL_PRINT("alcDestroyContext(): %d Source(s) NOT deleted\n", Context->SourceCount); + AL_PRINT("alcDestroyContext(): deleting %d Source(s)\n", Context->SourceCount); #endif while(Context->Source) |