summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/AlsaSoundStream.cpp
diff options
context:
space:
mode:
authorMichael M <mchtly@gmail.com>2017-10-21 12:34:51 -0700
committerMichael M <mchtly@gmail.com>2017-10-21 16:28:04 -0700
commit7bcdd1a46a2e0964c0ea155d840cff1dbf573916 (patch)
treebe4e3413edce0d1ec85385a5a95915e320fe6ad5 /Source/Core/AudioCommon/AlsaSoundStream.cpp
parent78d5dbe032d4390fbc3bbfc81768b68c2062fa8f (diff)
SoundStream: remove unused m_muted and IsMuted
Diffstat (limited to 'Source/Core/AudioCommon/AlsaSoundStream.cpp')
-rw-r--r--Source/Core/AudioCommon/AlsaSoundStream.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/AlsaSoundStream.cpp b/Source/Core/AudioCommon/AlsaSoundStream.cpp
index a2842b5fec..2ad7c86a6e 100644
--- a/Source/Core/AudioCommon/AlsaSoundStream.cpp
+++ b/Source/Core/AudioCommon/AlsaSoundStream.cpp
@@ -80,7 +80,6 @@ void AlsaSound::SoundLoop()
void AlsaSound::Clear(bool muted)
{
- m_muted = muted;
m_thread_status.store(muted ? ALSAThreadStatus::PAUSED : ALSAThreadStatus::RUNNING);
cv.notify_one(); // Notify thread that status has changed
}