mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-07-31 13:18:46 +00:00
fix: return path to _v2-entry-point in get_runtime_entrypoint_path
This commit is contained in:
parent
3f45d2ae4a
commit
ab95d66b9b
1 changed files with 4 additions and 1 deletions
|
@ -63,7 +63,10 @@ fn get_runtime_entrypoint_path() -> Option<PathBuf> {
|
||||||
.apps
|
.apps
|
||||||
.contains_key(&PRESSURE_VESSEL_STEAM_APPID)
|
.contains_key(&PRESSURE_VESSEL_STEAM_APPID)
|
||||||
})
|
})
|
||||||
.map(|(_, libraryfolder)| PathBuf::from(&libraryfolder.path))
|
.map(|(_, libraryfolder)| {
|
||||||
|
PathBuf::from(&libraryfolder.path)
|
||||||
|
.join("steamapps/common/SteamLinuxRuntime_sniper/_v2-entry-point")
|
||||||
|
})
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("Error getting steam root path: {e}");
|
eprintln!("Error getting steam root path: {e}");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue