Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
skip EGL when on pw-fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
galister committed May 2, 2023
1 parent 4e10eb7 commit 2c37e5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Desktop/Wayland/WaylandInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public static bool TryInitialize()

Console.WriteLine("Wayland detected.");

EGL.Initialize();
if (Config.Instance.WaylandCapture != "pw-fallback")
EGL.Initialize();

Instance = new WaylandInterface();

Expand Down

0 comments on commit 2c37e5b

Please sign in to comment.