dolphin/Source/Core/AudioCommon/NullSoundStream.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
340 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "AudioCommon/NullSoundStream.h"
void NullSound::SoundLoop()
{
}
bool NullSound::Init()
{
return true;
}
bool NullSound::SetRunning(bool running)
{
return true;
}
void NullSound::SetVolume(int volume)
{
}
void NullSound::Update()
{
}