mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
SoundStream: change Start/Stop to Init/SetRunning/destruct
This commit is contained in:
parent
ad4a89d64b
commit
0baddbf9a8
18 changed files with 102 additions and 121 deletions
|
@ -8,7 +8,12 @@ void NullSound::SoundLoop()
|
|||
{
|
||||
}
|
||||
|
||||
bool NullSound::Start()
|
||||
bool NullSound::Init()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool NullSound::SetRunning(bool running)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -20,7 +25,3 @@ void NullSound::SetVolume(int volume)
|
|||
void NullSound::Update()
|
||||
{
|
||||
}
|
||||
|
||||
void NullSound::Stop()
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue