mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
Changed: Better log text
This commit is contained in:
parent
7707463fe2
commit
75dd245195
1 changed files with 3 additions and 3 deletions
|
@ -165,7 +165,7 @@ void CSourceAL::submitStreamingBuffer(IBuffer *buffer)
|
||||||
|
|
||||||
if (!bufferAL->isBufferLoaded())
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -259,12 +259,12 @@ bool CSourceAL::play()
|
||||||
alSourcePlay(_Source);
|
alSourcePlay(_Source);
|
||||||
if (alGetError() != AL_NO_ERROR)
|
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
|
else
|
||||||
{
|
{
|
||||||
nlwarning("AL: Trying to play stream with no buffers queued.");
|
nlwarning("AL: MUSICBUG: Trying to play stream with no buffers queued.");
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
/* OLD
|
/* OLD
|
||||||
|
|
Loading…
Reference in a new issue