keydown typo

This commit is contained in:
sillysagiri 2024-10-19 10:03:10 +07:00
parent a538178c9c
commit 170382d2ca

View File

@ -48,7 +48,7 @@ public final class Input {
public final boolean IsKeyDown(int keycode)
{
return (state_keycode == keycode) && (state_keyphase == 0);
return (state_keycode == keycode) && (state_keyphase == 1);
}
public final boolean IsKeyDown(int[] keycode)