diff --git a/Source/Core/AudioCommon/SoundStream.h b/Source/Core/AudioCommon/SoundStream.h index 9afefe0ac2..6f494a6cde 100644 --- a/Source/Core/AudioCommon/SoundStream.h +++ b/Source/Core/AudioCommon/SoundStream.h @@ -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) {