Files
dolphin/Source/Core/AudioCommon/NullSoundStream.cpp
T

19 lines
277 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2010-11-14 23:56:26 +00:00
2014-02-17 05:18:15 -05:00
#include "AudioCommon/NullSoundStream.h"
2010-11-14 23:56:26 +00:00
bool NullSound::Init()
{
return true;
}
bool NullSound::SetRunning(bool running)
2010-11-14 23:56:26 +00:00
{
return true;
2010-11-14 23:56:26 +00:00
}
void NullSound::SetVolume(int volume)
{
}