From d46a1d34dd877639e2859231ca6dbbc6f929bc8b Mon Sep 17 00:00:00 2001 From: Nikolas Date: Wed, 3 Sep 2025 16:55:32 +0200 Subject: [PATCH] [build.zig] Make X11 the default display backend instead of choosing at runtime --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 8bbc8073f..a8f0df618 100644 --- a/build.zig +++ b/build.zig @@ -425,7 +425,7 @@ pub const Options = struct { rtextures: bool = true, platform: PlatformBackend = .glfw, linkage: std.builtin.LinkMode = .static, - linux_display_backend: LinuxDisplayBackend = .Both, + linux_display_backend: LinuxDisplayBackend = .X11, opengl_version: OpenglVersion = .auto, android_ndk: []const u8 = "", android_api_version: []const u8 = "35",