aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-12-02 01:17:26 -0800
committerChris Robinson <[email protected]>2012-12-02 01:17:26 -0800
commit830428fb0686729d287def30e86f60d6efacaec0 (patch)
tree4602d9f8a100c163aad8fe9bf411d2a1e1eb241c
parent0ca7ab2cf81d270ccc9fbaeecbd3c21361e5f82c (diff)
Use WARN when implicitly deleting resources with the context
-rw-r--r--Alc/ALc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 39296eb5..a53f0598 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1870,14 +1870,14 @@ static ALCvoid FreeContext(ALCcontext *context)
if(context->SourceMap.size > 0)
{
- ERR("(%p) Deleting %d Source(s)\n", context, context->SourceMap.size);
+ WARN("(%p) Deleting %d Source(s)\n", context, context->SourceMap.size);
ReleaseALSources(context);
}
ResetUIntMap(&context->SourceMap);
if(context->EffectSlotMap.size > 0)
{
- ERR("(%p) Deleting %d AuxiliaryEffectSlot(s)\n", context, context->EffectSlotMap.size);
+ WARN("(%p) Deleting %d AuxiliaryEffectSlot(s)\n", context, context->EffectSlotMap.size);
ReleaseALAuxiliaryEffectSlots(context);
}
ResetUIntMap(&context->EffectSlotMap);