2018-07-01 15:21:05 -04:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseExpansionAudio.h"
|
|
|
|
#include "Console.h"
|
|
|
|
#include "APU.h"
|
|
|
|
|
|
|
|
BaseExpansionAudio::BaseExpansionAudio(shared_ptr<Console> console)
|
|
|
|
{
|
|
|
|
_console = console;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseExpansionAudio::StreamState(bool saving)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseExpansionAudio::Clock()
|
|
|
|
{
|
|
|
|
if(_console->GetApu()->IsApuEnabled()) {
|
2019-11-10 17:35:29 -05:00
|
|
|
ClockAudio();
|
2018-07-01 15:21:05 -04:00
|
|
|
}
|
|
|
|
}
|