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

@ -260,8 +260,6 @@ void XAudio2_7::Stop()
}
}
bool XAudio2_7::usesMixer() const { return true; }
#else
struct StreamingVoiceContext2_7 {};
@ -283,7 +281,6 @@ void XAudio2_7::Stop() {}
void XAudio2_7::Update() {}
void XAudio2_7::Clear(bool mute) {}
void XAudio2_7::SetVolume(int volume) {}
bool XAudio2_7::usesMixer() const { return false; }
bool XAudio2_7::InitLibrary() { return false; }
#endif