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:
Lioncash 2015-05-24 06:05:30 -04:00
parent 07d4dbe657
commit 6b30c9710c
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ public:
virtual void Clear(bool mute) { m_muted = mute; }
bool IsMuted() const { return m_muted; }
virtual void StartLogAudio(const std::string& filename)
void StartLogAudio(const std::string& filename)
{
if (!m_logAudio)
{
@ -47,7 +47,7 @@ public:
}
}
virtual void StopLogAudio()
void StopLogAudio()
{
if (m_logAudio)
{