wined3d: Add missing newline at the end of traces.

This commit is contained in:
Jan Zerebecki 2006-08-08 00:04:24 +02:00 committed by Alexandre Julliard
parent 4d6cfb6351
commit f02af24039
1 changed files with 2 additions and 2 deletions

View File

@ -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;