fix duplicate inputs bug in features::anti_afk::send

This commit is contained in:
2025-04-26 05:47:10 +01:00
parent 1dbdc0e4cb
commit 1bcd6b2c7d
+1 -1
View File
@@ -57,6 +57,6 @@ fn send(vk_codes: &[VIRTUAL_KEY]) {
}; };
inputs.push(input); inputs.push(input);
} }
}
unsafe { SendInput(&inputs, size_of::<INPUT>() as i32) }; unsafe { SendInput(&inputs, size_of::<INPUT>() as i32) };
} }
}