summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2007-12-24 18:09:23 +0000
committer Nathan Woods <npwoods@mess.org>2007-12-24 18:09:23 +0000
commitdd703b9d81af7512ed9d8c3d2e341027acb72854 (patch)
treec28b6b1aca3771f68a55a554ab1077c4bf741615 /src/emu
parent787d8d1a8d383728527e8a7d09925a24222aba5f (diff)
Reverting my change; I must be understanding this as well as I thought
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/render.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/render.c b/src/emu/render.c
index 7a341b22b5a..c500f6840ed 100644
--- a/src/emu/render.c
+++ b/src/emu/render.c
@@ -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;
}