From 747c7e3d65c7eb6c94a28650da13b6899413bcfa Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Tue, 1 Aug 2023 12:46:05 +0200 Subject: [PATCH] feat: made "kill game process" button kill fps unlocker process as well --- src/ui/main/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/main/mod.rs b/src/ui/main/mod.rs index d105c26..eb52caf 100644 --- a/src/ui/main/mod.rs +++ b/src/ui/main/mod.rs @@ -575,7 +575,7 @@ impl SimpleComponent for App { })); let result = Command::new("pkill") - .arg("GenshinImpact|YuanShen") + .arg("GenshinImpact|YuanShen|unlocker\\.exe") .spawn(); if let Err(err) = result {