cosmetic fix (grygorii)

This commit is contained in:
GZharun 2015-02-13 17:59:04 +02:00 committed by Paul Davis
parent 480f1e4082
commit 0fca07fa9d

View file

@ -339,6 +339,12 @@ bool WCMRAudioDevice::Streaming ()
//**********************************************************************************************
WTErr WCMRAudioDevice::SetStreaming (bool newState)
{
// We must notify angine about our intention to start streming
// so Engine will provide all the initializations in the first audio callback
if (newState) {
m_pMyManager->NotifyClient (WCMRAudioDeviceManagerClient::DeviceStartsStreaming);
}
//This will most likely be overridden, the base class simply
//changes the member.
m_IsStreaming = newState;