mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:48:32 +00:00
34 lines
772 B
C#
34 lines
772 B
C#
namespace Ryujinx.Core.OsHle
|
|
{
|
|
class SystemStateMgr
|
|
{
|
|
internal static string[] AudioOutputs = new string[]
|
|
{
|
|
"AudioTvOutput",
|
|
"AudioStereoJackOutput",
|
|
"AudioBuiltInSpeakerOutput"
|
|
};
|
|
|
|
public string ActiveAudioOutput { get; private set; }
|
|
|
|
public SystemStateMgr()
|
|
{
|
|
SetAudioOutputAsBuiltInSpeaker();
|
|
}
|
|
|
|
public void SetAudioOutputAsTv()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[0];
|
|
}
|
|
|
|
public void SetAudioOutputAsStereoJack()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[1];
|
|
}
|
|
|
|
public void SetAudioOutputAsBuiltInSpeaker()
|
|
{
|
|
ActiveAudioOutput = AudioOutputs[2];
|
|
}
|
|
}
|
|
} |