From 865d3a0d5d92ee2f9582c276dfb4483faf06e6b2 Mon Sep 17 00:00:00 2001 From: Alexis Maiquez Date: Tue, 12 Dec 2023 01:15:21 +0100 Subject: [PATCH] add flatpak paths to asset and content discovery (#166) Signed-off-by: Alexis Maiquez --- src/Steam/FileSystem/FileSystem.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Steam/FileSystem/FileSystem.cpp b/src/Steam/FileSystem/FileSystem.cpp index 99bf896..d85a781 100644 --- a/src/Steam/FileSystem/FileSystem.cpp +++ b/src/Steam/FileSystem/FileSystem.cpp @@ -9,12 +9,14 @@ const char* assets_default_paths [] = { ".steam/steam/steamapps/common", ".local/share/Steam/steamapps/common", + ".var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common", nullptr }; const char* workshop_content_default_paths [] = { ".local/share/Steam/steamapps/workshop/content", ".steam/steam/steamapps/workshop/content", + ".var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/workshop/content", nullptr };