From 605c5658b2e750cee08a285e3db7fd6b2c497277 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Mon, 10 Dec 2012 13:32:17 +0100 Subject: [PATCH] Changed: Better log text --- code/nel/src/sound/driver/openal/source_al.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/nel/src/sound/driver/openal/source_al.cpp b/code/nel/src/sound/driver/openal/source_al.cpp index 82c9f1d1d..1f8d2219f 100644 --- a/code/nel/src/sound/driver/openal/source_al.cpp +++ b/code/nel/src/sound/driver/openal/source_al.cpp @@ -165,7 +165,7 @@ void CSourceAL::submitStreamingBuffer(IBuffer *buffer) if (!bufferAL->isBufferLoaded()) { - nlwarning("AL: Streaming buffer was not loaded, skipping buffer. This should not happen."); + nlwarning("AL: MUSICBUG: Streaming buffer was not loaded, skipping buffer. This should not happen."); return; } @@ -259,12 +259,12 @@ bool CSourceAL::play() alSourcePlay(_Source); if (alGetError() != AL_NO_ERROR) { - nlwarning("AL: Unknown error while trying to play streaming source."); + nlwarning("AL: MUSICBUG: Unknown error while trying to play streaming source."); } } else { - nlwarning("AL: Trying to play stream with no buffers queued."); + nlwarning("AL: MUSICBUG: Trying to play stream with no buffers queued."); } return true; /* OLD