Fixed minor warning about member initialization order in sf::SoundRecorder
This commit is contained in:
parent
cd84e84286
commit
eee18a515a
@ -47,8 +47,8 @@ namespace sf
|
|||||||
SoundRecorder::SoundRecorder() :
|
SoundRecorder::SoundRecorder() :
|
||||||
m_thread (&SoundRecorder::record, this),
|
m_thread (&SoundRecorder::record, this),
|
||||||
m_sampleRate (0),
|
m_sampleRate (0),
|
||||||
m_isCapturing (false),
|
m_processingInterval(milliseconds(100)),
|
||||||
m_processingInterval(milliseconds(100))
|
m_isCapturing (false)
|
||||||
{
|
{
|
||||||
priv::ensureALInit();
|
priv::ensureALInit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user