Remove usesMixer function from the sound streams.

This isn't used anywhere in the codebase. Not even the base SoundStream has it as part of its interface.
This commit is contained in:
lioncash 2014-03-18 10:42:07 -04:00
commit aecc8ea666
11 changed files with 0 additions and 21 deletions

View file

@ -27,6 +27,5 @@ public:
virtual void Stop() override;
virtual void Clear(bool mute) override;
static bool isValid() { return true; }
virtual bool usesMixer() const { return true; }
virtual void Update() override;
};