forked from dolphin-emu/dolphin
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