2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix a float/integer conversion warning.

This commit is contained in:
Darryl Pogue
2011-08-06 14:28:32 -07:00
parent 09f7a4f37d
commit 99f846cdde

View File

@ -761,7 +761,6 @@ void plDSoundBuffer::SetTimeOffsetSec(float seconds)
void plDSoundBuffer::SetTimeOffsetBytes(unsigned bytes)
{
alSourcef(source, AL_BYTE_OFFSET, bytes);
alSourcei(source, AL_BYTE_OFFSET, bytes);
ALenum error = alGetError();
}