dinput: Fix trace formatting.
This commit is contained in:
parent
f658adffc2
commit
adddc56699
|
@ -367,7 +367,7 @@ static LRESULT CALLBACK dinput_mouse_hook( int code, WPARAM wparam, LPARAM lpara
|
||||||
{
|
{
|
||||||
int i;
|
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);
|
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]);
|
for (i = 0; i < 5; i++) TRACE(" B%d: %02x", i, This->m_state.rgbButtons[i]);
|
||||||
TRACE(")\n");
|
TRACE(")\n");
|
||||||
|
|
Loading…
Reference in New Issue