Commit e0cd19d8 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wined3d: Remove extraneous braces from switch statements.

parent 8cf1f490
......@@ -426,11 +426,9 @@ static inline void walk_constant_heap(const struct wined3d_gl_info *gl_info, con
}
case HEAP_NODE_POP:
{
heap_idx >>= 1;
--stack_idx;
break;
}
}
}
checkGLcall("walk_constant_heap()");
......@@ -501,11 +499,9 @@ static inline void walk_constant_heap_clamped(const struct wined3d_gl_info *gl_i
}
case HEAP_NODE_POP:
{
heap_idx >>= 1;
--stack_idx;
break;
}
}
}
checkGLcall("walk_constant_heap_clamped()");
......
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