Skip to content

Commit 6c922e0

Browse files
committed
Set backends to Auto
1 parent 7d3a108 commit 6c922e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Games/CowsHead/Game.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"activeProfile": "Noah",
33
"graphics.vsync": true,
4-
"graphics.backend": "D3D11",
5-
"audio.backend": "XAudio2",
4+
"graphics.backend": "Auto",
5+
"audio.backend": "Auto",
66
"window.title": "COWS;HEAD NOAH",
77
"window.width": 1280,
88
"window.height": 720,

src/NitroSharp.Launcher/ConfigurationReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private static void Set(Configuration configuration, KeyValuePair<string, JsonVa
135135
{
136136
"XAUDIO" or "XAUDIO2" => AudioBackend.XAudio2,
137137
"OPENAL" or "OPENALSOFT" or "OPENAL SOFT" => AudioBackend.OpenAL,
138-
"NULL" or "Null" or "Auto" or "AUTO" => AudioBackend.Null,
138+
"NULL" or "Null" or "null" or "AUTO" or "Auto" or "auto" => AudioBackend.Null,
139139
_ => null,
140140
};
141141
}

0 commit comments

Comments
 (0)