You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using designer1337's csgo cheat base(propably not relevant, but mentioning it incase it is) with zgui, and when I'm using a text input field, the number 2 (above W, not the numpad 2) gets detected 3 times per keystroke. first two times it writes a 2, and a third time it writes a whitespace character or something like that.
Not sure if this is a reproducible issue, but I've fixed it by isolating the qwerty numbers into another else-if:
elseif (i > 47 && i <= 57) {
if (utils::input::key_pressed(i)) {
for (int j = 0; j < 10; j++) {
if(special_characters[j].vk == i)
value += utils::input::key_down(VK_SHIFT) ? special_characters[j].shift : special_characters[j].regular;
}
}
}
The text was updated successfully, but these errors were encountered:
I'm using designer1337's csgo cheat base(propably not relevant, but mentioning it incase it is) with zgui, and when I'm using a text input field, the number 2 (above W, not the numpad 2) gets detected 3 times per keystroke. first two times it writes a 2, and a third time it writes a whitespace character or something like that.
Not sure if this is a reproducible issue, but I've fixed it by isolating the qwerty numbers into another else-if:
The text was updated successfully, but these errors were encountered: