Rename CMixer to Mixer

This commit is contained in:
Michael Maltese
2017-06-26 14:41:12 -07:00
parent aa020040f6
commit b2c9d6d217
9 changed files with 42 additions and 43 deletions

View File

@ -12,14 +12,14 @@
class SoundStream
{
protected:
std::unique_ptr<CMixer> m_mixer;
std::unique_ptr<Mixer> m_mixer;
bool m_muted;
public:
SoundStream() : m_mixer(new CMixer(48000)), m_muted(false) {}
SoundStream() : m_mixer(new Mixer(48000)), m_muted(false) {}
virtual ~SoundStream() {}
static bool isValid() { return false; }
CMixer* GetMixer() const { return m_mixer.get(); }
Mixer* GetMixer() const { return m_mixer.get(); }
virtual bool Start() { return false; }
virtual void SetVolume(int) {}
virtual void SoundLoop() {}