Remove input logging
This commit is contained in:
parent
8db8e52819
commit
78644b87dc
5
input.c
5
input.c
@ -51,10 +51,9 @@ void input_Advance(System_Input *sys) {
|
|||||||
// Checks the most significiant bit (of the SHORT returned)
|
// Checks the most significiant bit (of the SHORT returned)
|
||||||
if ((GetAsyncKeyState(sys->systemKeymap[i]) & 0x8000) != 0) {
|
if ((GetAsyncKeyState(sys->systemKeymap[i]) & 0x8000) != 0) {
|
||||||
// Pressed
|
// Pressed
|
||||||
if (sys->keys[i] == JustReleased || sys->keys[i] == Released) {
|
if (sys->keys[i] == JustReleased || sys->keys[i] == Released)
|
||||||
fprintf(stderr, "[input_Advance] Key %s pressed\n", input_KeyNames[i]);
|
|
||||||
sys->keys[i] = JustPressed;
|
sys->keys[i] = JustPressed;
|
||||||
} else
|
else
|
||||||
sys->keys[i] = Pressed;
|
sys->keys[i] = Pressed;
|
||||||
} else {
|
} else {
|
||||||
// Released
|
// Released
|
||||||
|
Loading…
Reference in New Issue
Block a user