From 7666a68151ccd9a038dfb79c8ade84372c34100a Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sat, 19 Feb 2011 05:59:18 -0600 Subject: [PATCH] shut up noisy logging for now --- src/arch/InputHandler/InputHandler_DirectInput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/InputHandler/InputHandler_DirectInput.cpp b/src/arch/InputHandler/InputHandler_DirectInput.cpp index 14ba9b309b..513041a124 100644 --- a/src/arch/InputHandler/InputHandler_DirectInput.cpp +++ b/src/arch/InputHandler/InputHandler_DirectInput.cpp @@ -508,12 +508,12 @@ void InputHandler_DInput::UpdateBuffered( DIDevice &device, const RageTimer &tm case DIMOFS_X: up = MOUSE_X_LEFT; down = MOUSE_X_RIGHT; //cursorX += l; - LOG->Trace("dwData for mouse x: %f",l); + //LOG->Trace("dwData for mouse x: %f",l); break; case DIMOFS_Y: up = MOUSE_Y_UP; down = MOUSE_Y_DOWN; //cursorY += l; - LOG->Trace("dwData for mouse y: %f",l); + //LOG->Trace("dwData for mouse y: %f",l); break; case DIMOFS_Z: up = MOUSE_WHEELUP; down = MOUSE_WHEELDOWN;