aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs')
-rw-r--r--Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs b/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
index 1abfc8c3..0fe73ebb 100644
--- a/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
+++ b/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
@@ -28,13 +28,6 @@ namespace Ryujinx.HLE.HOS.SystemState
"zh-Hant"
};
- internal static string[] AudioOutputs = new string[]
- {
- "AudioTvOutput",
- "AudioStereoJackOutput",
- "AudioBuiltInSpeakerOutput"
- };
-
internal long DesiredKeyboardLayout { get; private set; }
internal SystemLanguage DesiredSystemLanguage { get; private set; }
@@ -57,8 +50,6 @@ namespace Ryujinx.HLE.HOS.SystemState
public SystemStateMgr()
{
- SetAudioOutputAsBuiltInSpeaker();
-
Account = new AccountUtils();
Account.AddUser(DefaultUserId, "Player");
@@ -94,21 +85,6 @@ namespace Ryujinx.HLE.HOS.SystemState
DesiredRegionCode = (uint)region;
}
- public void SetAudioOutputAsTv()
- {
- ActiveAudioOutput = AudioOutputs[0];
- }
-
- public void SetAudioOutputAsStereoJack()
- {
- ActiveAudioOutput = AudioOutputs[1];
- }
-
- public void SetAudioOutputAsBuiltInSpeaker()
- {
- ActiveAudioOutput = AudioOutputs[2];
- }
-
internal static long GetLanguageCode(int index)
{
if ((uint)index >= LanguageCodes.Length)