From 27d8776508647bd457fba907980fa202cabe0115 Mon Sep 17 00:00:00 2001 From: Oro <93224879+orowith2os@users.noreply.github.com> Date: Wed, 12 Oct 2022 13:56:14 -0500 Subject: [PATCH] Stop forcing X11 on Linux --- source/app.d | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/app.d b/source/app.d index 86c34e8..7ea2383 100644 --- a/source/app.d +++ b/source/app.d @@ -22,9 +22,6 @@ import std.process; void main(string[] args) { insLogInfo("Inochi Session %s, args=%s", INS_VERSION, args[1..$]); - - // Force X11 as the video driver on Linux - version(linux) environment["SDL_VIDEODRIVER"] = "x11"; // Set the application info InApplication appInfo = InApplication( @@ -60,4 +57,4 @@ void main(string[] args) { insCleanupFrameSending(); insSceneCleanup(); inSettingsSave(); -} \ No newline at end of file +}