Skip to content

Commit f853018

Browse files
committed
chore: change initial monitor capture settings to Auto instead of WGC
1 parent 432e8b9 commit f853018

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ObsKit.NET/Sources/MonitorCapture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ private static Settings BuildInitialSettings(int monitorIndex, bool captureCurso
123123
// depending on whether graphics_uses_d3d11 is true or false
124124
settings.Set("monitor", monitorIndex);
125125
settings.Set("capture_cursor", captureCursor);
126-
// Default to WGC (Windows.Graphics.Capture) for better performance
127-
settings.Set("method", 2); // 0=auto, 1=DXGI, 2=WGC
126+
// Let OBS choose the best capture method automatically
127+
settings.Set("method", 0); // 0=auto, 1=DXGI, 2=WGC
128128
}
129129
else if (OperatingSystem.IsLinux())
130130
{

0 commit comments

Comments
 (0)