From 862cdb35c46c16d03d112a9a01281823c57a2587 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 31 Jul 2023 19:24:23 -0400 Subject: [PATCH] Fix /usr/bin/wine not always existing, fall back to "wine" --- launcher/src/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 40ca513..b251e21 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -90,7 +90,7 @@ void Profile::readWineInfo() #if defined(Q_OS_LINUX) switch (wineType()) { case WineType::System: // system wine (should be in $PATH) - setWinePath("/usr/bin/wine"); + setWinePath("wine"); break; case WineType::Custom: // custom pth break;