diff options
author | Jakub Czapiga <mordijc@gmail.com> | 2024-07-07 21:17:17 +0200 |
---|---|---|
committer | Jakub Czapiga <mordijc@gmail.com> | 2024-07-07 21:23:18 +0200 |
commit | 954b3d1f432b1920105ca49a2857aa408242ca97 (patch) | |
tree | 95d9e88f8af6f30b8c7952d9d0e7d7d320314785 | |
parent | 0c8e8e24d7d42a8b60b02a4a52886a3e199339d8 (diff) |
proto-wine: Add search paths for debian-installation
Steam installer on Ubuntu places its files in
$HOME/.steam/debian-installation/
This patch fixes error: "Couldn't find steam runtime"
-rw-r--r-- | proto-wine/proton.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto-wine/proton.cpp b/proto-wine/proton.cpp index 868a4004..aa2c3755 100644 --- a/proto-wine/proton.cpp +++ b/proto-wine/proton.cpp @@ -17,11 +17,13 @@ static const char* steam_paths[] = { "/.steam/steam/steamapps/compatdata", "/.local/share/Steam/steamapps/compatdata", + "/.steam/debian-installation/steamapps/compatdata", }; static const char* runtime_paths[] = { "/.local/share/Steam/ubuntu12_32/steam-runtime", "/.steam/ubuntu12_32/steam-runtime", + "/.steam/debian-installation/ubuntu12_32/steam-runtime", }; |