d3d10: Remove double declared variable in parse_fx10_variable().

This commit is contained in:
Rico Schüller 2009-10-01 11:56:01 +02:00 committed by Alexandre Julliard
parent 7b520e1f31
commit 6f2ad69718
1 changed files with 1 additions and 2 deletions

View File

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