summaryrefslogtreecommitdiffstats
path: root/src/sound/oalsound/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/oalsound/channel.h')
-rw-r--r--src/sound/oalsound/channel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sound/oalsound/channel.h b/src/sound/oalsound/channel.h
index 883ddf2..f5f3bb9 100644
--- a/src/sound/oalsound/channel.h
+++ b/src/sound/oalsound/channel.h
@@ -86,6 +86,8 @@ class Channel
void ResetOper();
Sound GetSoundType();
void SetLoop(bool);
+ void Mute(bool);
+ bool IsMuted();
private:
Buffer *mBuffer;
@@ -99,4 +101,5 @@ class Channel
std::deque<SoundOper> mOper;
bool mReady;
bool mLoop;
+ bool mMute;
};