dinput: Only dump the HID report data that has been read.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
33578878e6
commit
cb8bc378c2
|
@ -1607,14 +1607,14 @@ static HRESULT hid_joystick_read_state( IDirectInputDevice8W *iface )
|
|||
if (ret && TRACE_ON(dinput))
|
||||
{
|
||||
TRACE( "read size %u report:\n", count );
|
||||
for (i = 0; i < report_len;)
|
||||
for (i = 0; i < count;)
|
||||
{
|
||||
char buffer[256], *buf = buffer;
|
||||
buf += sprintf(buf, "%08x ", i);
|
||||
do
|
||||
{
|
||||
buf += sprintf(buf, " %02x", (BYTE)report_buf[i] );
|
||||
} while (++i % 16 && i < report_len);
|
||||
} while (++i % 16 && i < count);
|
||||
TRACE("%s\n", buffer);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue