mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
SoundStream: change Start/Stop to Init/SetRunning/destruct
This commit is contained in:
@ -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()
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user