Module: wine Branch: master Commit: 9c63e186c6a84bbb9736c41412c15d24896f8c65 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9c63e186c6a84bbb9736c41412... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Sep 1 17:01:55 2008 +0200 wined3d: Add a '\n' to Wine traces. --- dlls/wined3d/nvidia_texture_shader.c | 2 +- dlls/wined3d/state.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wined3d/nvidia_texture_shader.c b/dlls/wined3d/nvidia_texture_shader.c index ca21ba0..9ebb17b 100644 --- a/dlls/wined3d/nvidia_texture_shader.c +++ b/dlls/wined3d/nvidia_texture_shader.c @@ -673,7 +673,7 @@ static void nvrc_fragment_free(IWineD3DDevice *iface) {} */ static BOOL nvts_conv_supported(WINED3DFORMAT fmt) { - TRACE("Checking shader format support for format %s: [FAILED]", debug_d3dformat(fmt)); + TRACE("Checking shader format support for format %s: [FAILED]\n", debug_d3dformat(fmt)); return FALSE; } diff --git a/dlls/wined3d/state.c b/dlls/wined3d/state.c index d97df5a..969b9fa 100644 --- a/dlls/wined3d/state.c +++ b/dlls/wined3d/state.c @@ -5557,7 +5557,7 @@ static void ffp_fragment_get_caps(WINED3DDEVTYPE devtype, WineD3D_GL_Info *gl_in static HRESULT ffp_fragment_alloc(IWineD3DDevice *iface) { return WINED3D_OK; } static void ffp_fragment_free(IWineD3DDevice *iface) {} static BOOL ffp_conv_supported(WINED3DFORMAT fmt) { - TRACE("Checking shader format support for format %s: [FAILED]", debug_d3dformat(fmt)); + TRACE("Checking shader format support for format %s: [FAILED]\n", debug_d3dformat(fmt)); return FALSE; }