aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-01-19 21:41:09 -0800
committerChris Robinson <[email protected]>2008-01-19 21:41:09 -0800
commitdb80f682c9427ca20738bcd851239c5e6f2405d6 (patch)
tree0dcba67ff59c1b9b4102557483b207b34f3e385a
parente1cdbac5a0bcb113bfdf1fb86bbb7d725556845b (diff)
Clean a couple debug messages
-rw-r--r--OpenAL32/alAuxEffectSlot.c2
-rw-r--r--OpenAL32/alSource.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c
index 41ea6c72..e20e3a45 100644
--- a/OpenAL32/alAuxEffectSlot.c
+++ b/OpenAL32/alAuxEffectSlot.c
@@ -518,7 +518,7 @@ ALvoid ReleaseALAuxiliaryEffectSlots(ALCcontext *Context)
{
#ifdef _DEBUG
if(Context->AuxiliaryEffectSlotCount > 0)
- AL_PRINT("destroycontext: %d AuxiliaryEffectSlot(s) NOT deleted\n", Context->AuxiliaryEffectSlotCount);
+ AL_PRINT("alcDestroyContext(): %d AuxiliaryEffectSlot(s) NOT deleted\n", Context->AuxiliaryEffectSlotCount);
#endif
while(Context->AuxiliaryEffectSlot)
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index ec1db1a4..df78de33 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -2288,7 +2288,7 @@ ALvoid ReleaseALSources(ALCcontext *Context)
{
#ifdef _DEBUG
if(Context->SourceCount > 0)
- AL_PRINT("destroycontext: %d Source(s) NOT deleted\n", Context->SourceCount);
+ AL_PRINT("alcDestroyContext(): %d Source(s) NOT deleted\n", Context->SourceCount);
#endif
while(Context->Source)