games-util/samrewritten-1.2.2 : Fixed steam installation detection && Added desktop and icon XDG files

This commit is contained in:
saundersp
2026-02-04 23:51:03 +01:00
parent 93e431b9c6
commit 1fb5e138f9
4 changed files with 41 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/src/utils/steam_locator.rs b/src/utils/steam_locator.rs
index 556127b..8199ef5 100644
--- a/src/utils/steam_locator.rs
+++ b/src/utils/steam_locator.rs
@@ -171,7 +171,7 @@ impl SteamLocator {
potential_dirs
.into_iter()
- .filter(|path| path.exists() && !path.is_symlink())
+ .filter(|path| path.exists())
.collect()
}