summaryrefslogtreecommitdiff
path: root/src/SFML/Audio/SoundStream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/SFML/Audio/SoundStream.cpp')
-rw-r--r--src/SFML/Audio/SoundStream.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/SFML/Audio/SoundStream.cpp b/src/SFML/Audio/SoundStream.cpp
index 81977fd..901d174 100644
--- a/src/SFML/Audio/SoundStream.cpp
+++ b/src/SFML/Audio/SoundStream.cpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
@@ -45,11 +45,13 @@ m_thread (&SoundStream::streamData, this),
m_threadMutex (),
m_threadStartState(Stopped),
m_isStreaming (false),
+m_buffers (),
m_channelCount (0),
m_sampleRate (0),
m_format (0),
m_loop (false),
-m_samplesProcessed(0)
+m_samplesProcessed(0),
+m_endBuffers ()
{
}