Commit f7a4cabb authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

d3dx9: Add count to trace in ID3DXBaseEffect::GetMatrixArray().

parent 7b902d22
...@@ -1938,7 +1938,7 @@ static HRESULT WINAPI ID3DXBaseEffectImpl_GetMatrixArray(ID3DXBaseEffect *iface, ...@@ -1938,7 +1938,7 @@ static HRESULT WINAPI ID3DXBaseEffectImpl_GetMatrixArray(ID3DXBaseEffect *iface,
struct ID3DXBaseEffectImpl *This = impl_from_ID3DXBaseEffect(iface); struct ID3DXBaseEffectImpl *This = impl_from_ID3DXBaseEffect(iface);
struct d3dx_parameter *param = get_valid_parameter(This, parameter); struct d3dx_parameter *param = get_valid_parameter(This, parameter);
TRACE("iface %p, parameter %p, matrix %p\n", This, parameter, matrix); TRACE("iface %p, parameter %p, matrix %p, count %u\n", This, parameter, matrix, count);
if (!count) return D3D_OK; if (!count) return D3D_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment