SoundStream: Devirtualize StartLogAudio and StopLogAudio
These don't rely on anything that might need to be implemented in other SoundStream classes.
This commit is contained in:
parent
07d4dbe657
commit
6b30c9710c
|
@ -32,7 +32,7 @@ public:
|
||||||
virtual void Clear(bool mute) { m_muted = mute; }
|
virtual void Clear(bool mute) { m_muted = mute; }
|
||||||
bool IsMuted() const { return m_muted; }
|
bool IsMuted() const { return m_muted; }
|
||||||
|
|
||||||
virtual void StartLogAudio(const std::string& filename)
|
void StartLogAudio(const std::string& filename)
|
||||||
{
|
{
|
||||||
if (!m_logAudio)
|
if (!m_logAudio)
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void StopLogAudio()
|
void StopLogAudio()
|
||||||
{
|
{
|
||||||
if (m_logAudio)
|
if (m_logAudio)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue