=?UTF-8?Q?Rico=20Sch=C3=BCller=20?=: d3dx9: Remove not needed TRACE.

Alexandre Julliard julliard at winehq.org
Tue Aug 21 13:40:18 CDT 2012


Module: wine
Branch: master
Commit: becf83fd86aea090916fc596462fb371ff308aca
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=becf83fd86aea090916fc596462fb371ff308aca

Author: Rico Schüller <kgbricola at web.de>
Date:   Tue Aug 21 12:26:40 2012 +0200

d3dx9: Remove not needed TRACE.

---

 dlls/d3dx9_36/effect.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/dlls/d3dx9_36/effect.c b/dlls/d3dx9_36/effect.c
index 72d44e7..b54c398 100644
--- a/dlls/d3dx9_36/effect.c
+++ b/dlls/d3dx9_36/effect.c
@@ -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;




More information about the wine-cvs mailing list