mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
cosmetic fix
This commit is contained in:
parent
f526625d77
commit
b6b497bf2a
@ -309,7 +309,7 @@ static void draw_sprites(running_machine *machine, bitmap_t *bitmap, const recta
|
||||
y = buffered_spriteram16[offs+0] & 0x1ff;
|
||||
x = buffered_spriteram16[offs+3] & 0x1ff;
|
||||
|
||||
if ((buffered_spriteram16[offs+2] & 0x0080)==0x0080) pri_back=0; else pri_back=2;
|
||||
if (buffered_spriteram16[offs+2] & 0x0080) pri_back=0; else pri_back=2;
|
||||
|
||||
sprite= buffered_spriteram16[offs+1];
|
||||
colour = buffered_spriteram16[offs+2] & 0x007f;
|
||||
@ -324,8 +324,7 @@ static void draw_sprites(running_machine *machine, bitmap_t *bitmap, const recta
|
||||
x_multi = 1 << x_multi;
|
||||
|
||||
offs += 4 * x_multi;
|
||||
if (pri_sprite != k)
|
||||
continue;
|
||||
if (pri_sprite != k) continue;
|
||||
|
||||
x = x - 16;
|
||||
y = 384 - 16 - y;
|
||||
|
Loading…
Reference in New Issue
Block a user