blob: 3c7a0ebb983799d631a8ea94a16d23cb52077c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "AudioCommon/NullSoundStream.h"
bool NullSound::Init()
{
return true;
}
bool NullSound::SetRunning(bool running)
{
return true;
}
void NullSound::SetVolume(int volume)
{
}
|