d3dx9: Remove not needed TRACE.

This commit is contained in:
Rico Schüller 2012-08-21 12:26:40 +02:00 committed by Alexandre Julliard
parent 892308fdb6
commit becf83fd86
1 changed files with 1 additions and 5 deletions

View File

@ -456,11 +456,7 @@ static struct d3dx_technique *get_technique_by_name(struct ID3DXBaseEffectImpl *
{
struct d3dx_technique *tech = get_technique_struct(base->technique_handles[i]);
if (!strcmp(tech->name, name))
{
TRACE("Returning technique %p\n", tech);
return tech;
}
if (!strcmp(tech->name, name)) return tech;
}
return NULL;