mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-17 02:42:45 +00:00
Fix a value defined at the wrong place
This commit is contained in:
parent
4ef921c43f
commit
64f792c01d
@ -71,7 +71,7 @@ static ALenum getALFormat(ChannelConfig chans, SampleType type)
|
||||
class OpenAL_SoundStream : public Sound
|
||||
{
|
||||
static const ALuint sNumBuffers = 6;
|
||||
static const ALfloat sBufferLength = 0.125f;
|
||||
static const ALfloat sBufferLength;
|
||||
|
||||
OpenAL_Output &mOutput;
|
||||
|
||||
@ -101,6 +101,7 @@ public:
|
||||
bool process();
|
||||
};
|
||||
|
||||
const ALfloat OpenAL_SoundStream::sBufferLength = 0.125f;
|
||||
|
||||
//
|
||||
// A background streaming thread (keeps active streams processed)
|
||||
|
Loading…
x
Reference in New Issue
Block a user