mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
19 lines
277 B
C++
19 lines
277 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::SetRunning(bool running)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void NullSound::SetVolume(int volume)
|
|
{
|
|
}
|