mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01:00
20 lines
221 B
C++
20 lines
221 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "AudioManager.h"
|
||
|
|
|
||
|
|
AudioManager::AudioManager()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void AudioManager::Init()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void AudioManager::Close()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
u8 AudioManager::GetState()
|
||
|
|
{
|
||
|
|
return CELL_AUDIO_OUT_OUTPUT_STATE_ENABLED;
|
||
|
|
}
|