mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
220 B
C++
14 lines
220 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "AudioManager.h"
|
|
|
|
void AudioManager::Init()
|
|
{
|
|
if (!m_audio_out) m_audio_out = Emu.GetCallbacks().get_audio();
|
|
}
|
|
|
|
void AudioManager::Close()
|
|
{
|
|
m_audio_out.reset();
|
|
}
|