1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00

Fix /usr/bin/wine not always existing, fall back to "wine"

This commit is contained in:
Joshua Goins 2023-07-31 19:24:23 -04:00
parent 63674ba7f5
commit 862cdb35c4

View file

@ -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;