File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -866,7 +866,6 @@ int UInputMan::Update() {
866
866
case SDL_EVENT_KEY_UP:
867
867
case SDL_EVENT_KEY_DOWN: {
868
868
Keyboard& keyboard = m_KeyboardStates[inputEvent.key .which ];
869
- std::cout << inputEvent.key .which << std::endl;
870
869
keyboard.id = inputEvent.key .which ;
871
870
keyboard.changedKeyStates [inputEvent.key .scancode ] = (inputEvent.key .down != keyboard.keyStates [inputEvent.key .scancode ]);
872
871
keyboard.keyStates [inputEvent.key .scancode ] = inputEvent.key .down ;
@@ -951,7 +950,6 @@ int UInputMan::Update() {
951
950
mouse.id = inputEvent.button .which ;
952
951
mouse.change [inputEvent.button .button ] = inputEvent.button .down != mouse.state [inputEvent.button .button ];
953
952
mouse.state [inputEvent.button .button ] = inputEvent.button .down ;
954
- std::cout << inputEvent.button .which << " " << (int )inputEvent.button .button << " " << inputEvent.button .down << std::endl;
955
953
if (inputEvent.button .which != 0 ) {
956
954
m_MouseStates[0 ].change [inputEvent.button .button ] = inputEvent.button .down != m_MouseStates[0 ].state [inputEvent.button .button ];
957
955
m_MouseStates[0 ].state [inputEvent.button .button ] = inputEvent.button .down ;
You can’t perform that action at this time.
0 commit comments