From a473a1a834ae2edddac9fc392510bd4c98a28cb6 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Fri, 29 Dec 2023 21:28:57 +0200 Subject: [PATCH] fix: updated fps unlocker executable name in kill game button --- 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 3cd3312..bfdab28 100644 --- a/src/ui/main/mod.rs +++ b/src/ui/main/mod.rs @@ -525,7 +525,7 @@ impl SimpleComponent for App { let result = std::process::Command::new("pkill") .arg("-f") // full text search .arg("-i") // case-insensitive - .arg("GenshinImpact|YuanShen|unlocker\\.exe") + .arg("GenshinImpact|YuanShen|fpsunlock\\.exe") .spawn(); if let Err(err) = result {