Module: wine Branch: master Commit: ce5c4d38c4b3d2152dec404bc2a1d8da1295d52b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=ce5c4d38c4b3d2152dec404b...
Author: Stefan Dösinger stefandoesinger@gmx.at Date: Wed Aug 16 13:53:50 2006 +0200
wined3d: Silence WINED3DRS_DEBUGMONITORTOKEN.
---
dlls/wined3d/device.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index eb84173..84b2645 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -4495,8 +4495,10 @@ static HRESULT WINAPI IWineD3DDeviceImpl if(0xbaadcafe != Value) { /* MSDN says the default is D3DDMT_ENABLE but our tests confirm 0xbaadcafe is the default. */ /* MSDN says anything other than D3DDMT_ENABLE or DISABLE does not change the state, - * but our tests disagree. */ - ERR("(%p)->(%s,%ld) not yet implemented\n", This, debug_d3drenderstate(State), Value); + * but our tests disagree. + * We do not claim to implement a debugging lib, so do not write an ERR + */ + WARN("(%p)->(%s,%ld) not yet implemented\n", This, debug_d3drenderstate(State), Value); } break; }