summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/NullSoundStream.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-05-24 04:13:02 -0400
committerLioncash <mathew1800@gmail.com>2015-05-24 05:49:41 -0400
commit35ee8a136237042efa6987e954c135f91a065cd0 (patch)
treed84a20d521f2a3eb8a4f4ecaca95d577798e294e /Source/Core/AudioCommon/NullSoundStream.h
parenta6e5fd1e27385bb68844584927d45ec32b99eb55 (diff)
SoundStream: Internally construct the mixer
Instead of creating the mixer externally and then passing it in, it can just be made within the class.
Diffstat (limited to 'Source/Core/AudioCommon/NullSoundStream.h')
-rw-r--r--Source/Core/AudioCommon/NullSoundStream.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/AudioCommon/NullSoundStream.h b/Source/Core/AudioCommon/NullSoundStream.h
index fd975259b0..4c7e455b09 100644
--- a/Source/Core/AudioCommon/NullSoundStream.h
+++ b/Source/Core/AudioCommon/NullSoundStream.h
@@ -15,12 +15,6 @@ class NullSound final : public SoundStream
short realtimeBuffer[BUF_SIZE / sizeof(short)];
public:
- NullSound(CMixer *mixer)
- : SoundStream(mixer)
- {}
-
- virtual ~NullSound() {}
-
virtual bool Start() override;
virtual void SoundLoop() override;
virtual void SetVolume(int volume) override;