summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/XAudio2_7Stream.cpp
diff options
context:
space:
mode:
authorlioncash <mathew1800@gmail.com>2014-03-18 10:42:07 -0400
committerlioncash <mathew1800@gmail.com>2014-03-18 10:42:07 -0400
commitaecc8ea6665d5f55f8b39d2ba0bab719ec6712a7 (patch)
tree45e4358b2fb81f628224239e82fbcb8a0cc5426c /Source/Core/AudioCommon/XAudio2_7Stream.cpp
parent5e5ab61d0ccd8f0f6436071beb55f863ae41a3b1 (diff)
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.
Diffstat (limited to 'Source/Core/AudioCommon/XAudio2_7Stream.cpp')
-rw-r--r--Source/Core/AudioCommon/XAudio2_7Stream.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/AudioCommon/XAudio2_7Stream.cpp b/Source/Core/AudioCommon/XAudio2_7Stream.cpp
index ea2e43708d..816d83d47b 100644
--- a/Source/Core/AudioCommon/XAudio2_7Stream.cpp
+++ b/Source/Core/AudioCommon/XAudio2_7Stream.cpp
@@ -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