mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
23 lines
303 B
C++
23 lines
303 B
C++
// Copyright 2008 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "AudioCommon/NullSoundStream.h"
|
|
|
|
bool NullSound::Init()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool NullSound::Start()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool NullSound::Stop()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void NullSound::SetVolume(int volume)
|
|
{
|
|
}
|