Commit 6f2ad697 authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

d3d10: Remove double declared variable in parse_fx10_variable().

parent 7b520e1f
......@@ -790,10 +790,9 @@ static HRESULT parse_fx10_variable(struct d3d10_effect_variable *v, const char *
return E_OUTOFMEMORY;
}
for(i = 0; i < v->annotation_count; ++i)
for (i = 0; i < v->annotation_count; ++i)
{
struct d3d10_effect_variable *a = &v->annotations[i];
HRESULT hr;
a->effect = v->effect;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment