dinput: Fix trace formatting.

oldstable
Vitaliy Margolen 2007-01-09 13:36:36 -07:00 committed by Alexandre Julliard
parent f658adffc2
commit adddc56699
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ static LRESULT CALLBACK dinput_mouse_hook( int code, WPARAM wparam, LPARAM lpara
{
int i;
TRACE("msg %x @ (%d %d): (X: %d Y: %d Z: %d\n", wparam, hook->pt.x, hook->pt.y,
TRACE("msg %x @ (%d %d): (X: %d Y: %d Z: %d", wparam, hook->pt.x, hook->pt.y,
This->m_state.lX, This->m_state.lY, This->m_state.lZ);
for (i = 0; i < 5; i++) TRACE(" B%d: %02x", i, This->m_state.rgbButtons[i]);
TRACE(")\n");