mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-13 22:01:25 +00:00
Be less noisey about loop points
This commit is contained in:
parent
73d8659f23
commit
a661797aa8
1 changed files with 1 additions and 1 deletions
|
@ -961,7 +961,7 @@ SoundHandle OpenALSoundRenderer::LoadSoundRaw(BYTE *sfxdata, int length, int fre
|
||||||
loopend = length / (channels*bits/8);
|
loopend = length / (channels*bits/8);
|
||||||
|
|
||||||
ALint loops[2] = { loopstart, loopend };
|
ALint loops[2] = { loopstart, loopend };
|
||||||
Printf("Setting loop points %d -> %d\n", loops[0], loops[1]);
|
DPrintf("Setting loop points %d -> %d\n", loops[0], loops[1]);
|
||||||
alBufferiv(buffer, AL_LOOP_POINTS_SOFT, loops);
|
alBufferiv(buffer, AL_LOOP_POINTS_SOFT, loops);
|
||||||
getALError();
|
getALError();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue