fix: updated fps unlocker executable name in kill game button

This commit is contained in:
Observer KRypt0n_ 2023-12-29 21:28:57 +02:00
parent 386c97c9c8
commit a473a1a834
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -525,7 +525,7 @@ impl SimpleComponent for App {
let result = std::process::Command::new("pkill") let result = std::process::Command::new("pkill")
.arg("-f") // full text search .arg("-f") // full text search
.arg("-i") // case-insensitive .arg("-i") // case-insensitive
.arg("GenshinImpact|YuanShen|unlocker\\.exe") .arg("GenshinImpact|YuanShen|fpsunlock\\.exe")
.spawn(); .spawn();
if let Err(err) = result { if let Err(err) = result {