SoundStream: Devirtualize GetMixer
Since it's handled by the base class, there's no need to allow overriding.
This commit is contained in:
parent
35ee8a1362
commit
4695233c98
|
@ -23,7 +23,7 @@ public:
|
||||||
virtual ~SoundStream() { }
|
virtual ~SoundStream() { }
|
||||||
|
|
||||||
static bool isValid() { return false; }
|
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 bool Start() { return false; }
|
||||||
virtual void SetVolume(int) {}
|
virtual void SetVolume(int) {}
|
||||||
virtual void SoundLoop() {}
|
virtual void SoundLoop() {}
|
||||||
|
|
Loading…
Reference in New Issue