Skip to content

Commit dcaedaa

Browse files
fix(console): comment out debug print statement for key presses
1 parent 59f66e7 commit dcaedaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/game/iw4/mp/components/console.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ void Console::HandleInput()
361361
if (keystroke.Flags == 0 || keystroke.Flags & XINPUT_KEYSTROKE_KEYUP)
362362
return;
363363

364-
DbgPrint("Key pressed: %c (VK: %d)", keystroke.Unicode, keystroke.VirtualKey);
364+
// DbgPrint("Key pressed: %c (VK: %d)", keystroke.Unicode, keystroke.VirtualKey);
365365

366366
// Toggle console with tilde key
367367
if (keystroke.VirtualKey == VK_OEM_3)

0 commit comments

Comments
 (0)