empty session with firewall instead of suspend

This commit is contained in:
2025-12-12 03:52:40 -05:00
committed by sapphire
parent 54985d350a
commit ade95b5c65
3 changed files with 55 additions and 49 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ impl GameNetworking {
}
pub fn block_exe(&mut self, system_info: &mut SystemInfo) -> Result<(), Box<dyn Error>> {
let Some(exe_path) = get_game_exe_path(system_info) else {
let Some(exe_path) = system_info.get_game_exe_path() else {
return Ok(());
};
Self::block_generic(Mode::EntireGame(exe_path.to_path_buf()))?;