diff options
| author | Michael M <mchtly@gmail.com> | 2017-10-21 16:23:40 -0700 |
|---|---|---|
| committer | Michael M <mchtly@gmail.com> | 2017-11-19 12:09:54 -0800 |
| commit | 0baddbf9a8152ab7dd3ab200e516a998a0c9433f (patch) | |
| tree | 66ef68e2df83ed39845082818506778271bfcbe3 /Source/Core/AudioCommon/NullSoundStream.cpp | |
| parent | ad4a89d64b0d346553be473c1d877b34b896bfeb (diff) | |
SoundStream: change Start/Stop to Init/SetRunning/destruct
Diffstat (limited to 'Source/Core/AudioCommon/NullSoundStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/NullSoundStream.cpp | 9 |
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() { } |
