mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
SoundStream: remove unused m_muted and IsMuted
This commit is contained in:
parent
78d5dbe032
commit
7bcdd1a46a
7 changed files with 5 additions and 20 deletions
|
@ -13,10 +13,9 @@ class SoundStream
|
|||
{
|
||||
protected:
|
||||
std::unique_ptr<Mixer> m_mixer;
|
||||
bool m_muted;
|
||||
|
||||
public:
|
||||
SoundStream() : m_mixer(new Mixer(48000)), m_muted(false) {}
|
||||
SoundStream() : m_mixer(new Mixer(48000)) {}
|
||||
virtual ~SoundStream() {}
|
||||
static bool isValid() { return false; }
|
||||
Mixer* GetMixer() const { return m_mixer.get(); }
|
||||
|
@ -25,6 +24,5 @@ public:
|
|||
virtual void SoundLoop() {}
|
||||
virtual void Stop() {}
|
||||
virtual void Update() {}
|
||||
virtual void Clear(bool mute) { m_muted = mute; }
|
||||
bool IsMuted() const { return m_muted; }
|
||||
virtual void Clear(bool mute) {}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue