summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/NullSoundStream.cpp
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2018-01-02 09:58:36 +0100
committerGitHub <noreply@github.com>2018-01-02 09:58:36 +0100
commitcb168b184386f169aeb828f660ac63c5bc3e540c (patch)
treea7e89360ae75653e46536bd77d9fd27bd44774c1 /Source/Core/AudioCommon/NullSoundStream.cpp
parent26a9957285aac023ee7d35cf506b82381575df9a (diff)
parenta988a8a4587bf18d8ad8dba36653b803e3a583b4 (diff)
Merge pull request #6134 from ligfx/soundstreamlifecycle
SoundStream: change Start/Stop lifecycle to Init/SetRunning/destruct
Diffstat (limited to 'Source/Core/AudioCommon/NullSoundStream.cpp')
-rw-r--r--Source/Core/AudioCommon/NullSoundStream.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/AudioCommon/NullSoundStream.cpp b/Source/Core/AudioCommon/NullSoundStream.cpp
index ce1cfc6a59..c27e407a78 100644
--- a/Source/Core/AudioCommon/NullSoundStream.cpp
+++ b/Source/Core/AudioCommon/NullSoundStream.cpp
@@ -8,19 +8,20 @@ void NullSound::SoundLoop()
{
}
-bool NullSound::Start()
+bool NullSound::Init()
{
return true;
}
-void NullSound::SetVolume(int volume)
+bool NullSound::SetRunning(bool running)
{
+ return true;
}
-void NullSound::Update()
+void NullSound::SetVolume(int volume)
{
}
-void NullSound::Stop()
+void NullSound::Update()
{
}