2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:09:55 +03:00
|
|
|
// Refer to the license.txt file included.
|
2010-11-15 01:56:26 +02:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "AudioCommon/NullSoundStream.h"
|
2010-11-15 01:56:26 +02:00
|
|
|
|
|
|
|
void NullSound::SoundLoop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-22 02:23:40 +03:00
|
|
|
bool NullSound::Init()
|
2010-11-15 01:56:26 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-22 02:23:40 +03:00
|
|
|
bool NullSound::SetRunning(bool running)
|
2010-11-15 01:56:26 +02:00
|
|
|
{
|
2017-10-22 02:23:40 +03:00
|
|
|
return true;
|
2010-11-15 01:56:26 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 02:23:40 +03:00
|
|
|
void NullSound::SetVolume(int volume)
|
2010-11-15 01:56:26 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-22 02:23:40 +03:00
|
|
|
void NullSound::Update()
|
2010-11-15 01:56:26 +02:00
|
|
|
{
|
|
|
|
}
|