From bab5dcbbbb6e3e0d95795de2aaa2219d88ea0a64 Mon Sep 17 00:00:00 2001 From: Roberto Zandona Date: Thu, 31 Jul 2008 21:49:16 +0000 Subject: [PATCH] fix sprite-sprite priorities in spinlbrk (mantis #02060) --- src/mame/video/aerofgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/aerofgt.c b/src/mame/video/aerofgt.c index 68399faa350..602dce162b9 100644 --- a/src/mame/video/aerofgt.c +++ b/src/mame/video/aerofgt.c @@ -815,8 +815,8 @@ VIDEO_UPDATE( spinlbrk ) /* we use the priority buffer so sprites are drawn front to back */ turbofrc_draw_sprites(screen->machine,bitmap,cliprect,0,-1); turbofrc_draw_sprites(screen->machine,bitmap,cliprect,0, 0); - turbofrc_draw_sprites(screen->machine,bitmap,cliprect,1,-1); turbofrc_draw_sprites(screen->machine,bitmap,cliprect,1, 0); + turbofrc_draw_sprites(screen->machine,bitmap,cliprect,1,-1); return 0; }