Commit 868f6393 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3dxof: Fix dead code.

parent d92eca1e
......@@ -1149,12 +1149,7 @@ static BOOL parse_object_members_list(parse_buffer * buf)
{
token = get_TOKEN(buf);
if ((token != TOKEN_SEMICOLON) && (token != TOKEN_COMMA))
{
/* Allow comma instead of semicolon in some specific cases */
if (!((token == TOKEN_COMMA) && ((i+1) < pt->nb_members) && (pt->members[i].type == pt->members[i+1].type)
&& (!pt->members[i].nb_dims) && (!pt->members[i+1].nb_dims)))
return FALSE;
}
return FALSE;
}
}
......
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