1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-14 01:40:05 +08:00

Fixed minor warning about member initialization order in sf::SoundRecorder

This commit is contained in:
Laurent Gomila 2013-10-01 18:27:42 +02:00
parent cd84e84286
commit eee18a515a

@ -47,8 +47,8 @@ namespace sf
SoundRecorder::SoundRecorder() :
m_thread (&SoundRecorder::record, this),
m_sampleRate (0),
m_isCapturing (false),
m_processingInterval(milliseconds(100))
m_processingInterval(milliseconds(100)),
m_isCapturing (false)
{
priv::ensureALInit();
}