mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
21 lines
343 B
C++
21 lines
343 B
C++
#include "stdafx.h"
|
|
#include "BaseExpansionAudio.h"
|
|
#include "Console.h"
|
|
#include "APU.h"
|
|
|
|
BaseExpansionAudio::BaseExpansionAudio(std::shared_ptr<Console> console)
|
|
{
|
|
_console = console;
|
|
}
|
|
|
|
void BaseExpansionAudio::StreamState(bool saving)
|
|
{
|
|
}
|
|
|
|
void BaseExpansionAudio::Clock()
|
|
{
|
|
if(_console->GetApu()->IsApuEnabled()) {
|
|
ClockAudio();
|
|
}
|
|
}
|