From 9852ce118714942ef834ef301bba441754c9c9d0 Mon Sep 17 00:00:00 2001 From: BITWISE <52811202+BlTWISE@users.noreply.github.com> Date: Thu, 29 Jul 2021 22:13:12 -0400 Subject: [PATCH] Fixing one tiny issue (an inaccurate comment) You said you'd wait 1/10th of a second, but you wait for 50 milliseconds instead. I just upped the sleep time to 100ms. --- csgo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csgo.c b/csgo.c index eb126ce..3e982a6 100644 --- a/csgo.c +++ b/csgo.c @@ -251,7 +251,7 @@ NTSTATUS SystemRoutine() //lets wait 1/10 seconds and send the release - Sleep(50); + Sleep(100); //remove button down flag mdata.ButtonFlags&=~MOUSE_LEFT_BUTTON_DOWN;