From f02af2403916d923477a128301a369ec5deecf07 Mon Sep 17 00:00:00 2001 From: Jan Zerebecki Date: Tue, 8 Aug 2006 00:04:24 +0200 Subject: [PATCH] wined3d: Add missing newline at the end of traces. --- dlls/wined3d/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 7af71515b59..4bff18395b5 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -3886,9 +3886,9 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, D case WINED3DRS_RANGEFOGENABLE : { if (Value) { - TRACE("Enabled RANGEFOG"); + TRACE("Enabled RANGEFOG\n"); } else { - TRACE("Disabled RANGEFOG"); + TRACE("Disabled RANGEFOG\n"); } } break;