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
parent 5e5ab61d0c
commit aecc8ea666
11 changed files with 0 additions and 21 deletions

View File

@ -20,7 +20,6 @@ public:
virtual bool Start();
virtual void Stop();
static bool isValid() { return true; }
virtual bool usesMixer() const { return true; }
private:
std::thread thread;