From 4695233c985143124000c45a50974bddf690c1d0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 24 May 2015 05:03:14 -0400 Subject: [PATCH] SoundStream: Devirtualize GetMixer Since it's handled by the base class, there's no need to allow overriding. --- Source/Core/AudioCommon/SoundStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/SoundStream.h b/Source/Core/AudioCommon/SoundStream.h index 2b3bcfaa04..9afefe0ac2 100644 --- a/Source/Core/AudioCommon/SoundStream.h +++ b/Source/Core/AudioCommon/SoundStream.h @@ -23,7 +23,7 @@ public: virtual ~SoundStream() { } static bool isValid() { return false; } - virtual CMixer* GetMixer() const { return m_mixer.get(); } + CMixer* GetMixer() const { return m_mixer.get(); } virtual bool Start() { return false; } virtual void SetVolume(int) {} virtual void SoundLoop() {}