From 6b30c9710c834ade00071916d116491883926343 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 24 May 2015 06:05:30 -0400 Subject: [PATCH] SoundStream: Devirtualize StartLogAudio and StopLogAudio These don't rely on anything that might need to be implemented in other SoundStream classes. --- Source/Core/AudioCommon/SoundStream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {