diff options
author | Chris Robinson <[email protected]> | 2011-09-20 11:58:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-20 11:58:26 -0700 |
commit | d3e7a26db6c51410147eeeee8113cd7eac5d9668 (patch) | |
tree | 43a19e874b36200257b1f2048687be73623a8575 /Alc/ALc.c | |
parent | 8c2a2a5c9da7793c71d94770b4bee40b4f123ccf (diff) |
Fix a warning message
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2526,7 +2526,7 @@ ALC_API ALCboolean ALC_APIENTRY alcCloseDevice(ALCdevice *pDevice) if((ctx=pDevice->ContextList) != NULL) { do { - WARN("Destroying context %p\n", ctx); + WARN("Releasing context %p\n", ctx); ReleaseContext(ctx, pDevice); } while((ctx=pDevice->ContextList) != NULL); ALCdevice_StopPlayback(pDevice); |