mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +01:00
improve logs
This commit is contained in:
parent
adc7934c67
commit
d71118454e
@ -75,7 +75,16 @@ static HRESULT WINAPI fake_did_GetDeviceData(
|
||||
LPDWORD pdwInOut,
|
||||
DWORD dwFlags)
|
||||
{
|
||||
//TRACE("DirectInput GetDeviceData [%p]\n", _ReturnAddress());
|
||||
/*
|
||||
TRACE(
|
||||
"DirectInput GetDeviceData(This=%p, cbObjectData=%lu, rgdod=%p, pdwInOut=%p, dwFlags=%lu) [%p]\n",
|
||||
This,
|
||||
cbObjectData,
|
||||
rgdod,
|
||||
pdwInOut,
|
||||
dwFlags,
|
||||
_ReturnAddress());
|
||||
*/
|
||||
|
||||
HRESULT result = real_did_GetDeviceData(This, cbObjectData, rgdod, pdwInOut, dwFlags);
|
||||
|
||||
@ -97,7 +106,7 @@ static HRESULT WINAPI fake_did_GetDeviceData(
|
||||
|
||||
static HRESULT WINAPI fake_did_GetDeviceState(IDirectInputDeviceA* This, DWORD cbData, LPVOID lpvData)
|
||||
{
|
||||
//TRACE("DirectInput GetDeviceState [%p]\n", _ReturnAddress());
|
||||
//TRACE("DirectInput GetDeviceState(This=%p, cbData=%lu, lpvData=%p) [%p]\n", This, cbData, lpvData, _ReturnAddress());
|
||||
|
||||
HRESULT result = real_did_GetDeviceState(This, cbData, lpvData);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user