Reverting my change; I must be understanding this as well as I thought

This commit is contained in:
Nathan Woods 2007-12-24 18:09:23 +00:00
parent 787d8d1a8d
commit dd703b9d81

View File

@ -385,9 +385,6 @@ INLINE render_primitive *alloc_render_primitive(int type)
INLINE void append_render_primitive(render_primitive_list *list, render_primitive *prim)
{
assert(prim->bounds.x0 <= prim->bounds.x1);
assert(prim->bounds.y0 <= prim->bounds.y1);
*list->nextptr = prim;
list->nextptr = &prim->next;
}