Proton support (#64)

Enable proton for heroic games
This commit is contained in:
Philip Kristoffersen
2022-03-31 17:33:33 +02:00
committed by GitHub
parent 704d5b5758
commit b58cbc51e0
24 changed files with 589 additions and 156 deletions
+2 -2
View File
@@ -185,7 +185,7 @@ fn get_vdf_path<S: AsRef<str>>(steamid: S) -> Option<PathBuf> {
}
return None;
}
Err(e) => return None,
Err(_e) => return None,
}
}
@@ -299,7 +299,7 @@ fn get_level_db_location() -> Option<PathBuf> {
}
return None;
}
Err(e) => return None,
Err(_e) => return None,
}
}