mirror of
https://github.com/holub/mame
synced 2025-06-25 05:44:23 +03:00
fix y coordinate for sprites in final crash
This commit is contained in:
parent
c9211856f1
commit
368754b5e1
@ -135,7 +135,7 @@ static void fcrash_render_sprites(running_machine *machine, bitmap_t *bitmap,con
|
|||||||
|
|
||||||
tileno = cps1_gfxram[base+pos];
|
tileno = cps1_gfxram[base+pos];
|
||||||
xpos = cps1_gfxram[base+pos+2];
|
xpos = cps1_gfxram[base+pos+2];
|
||||||
ypos = cps1_gfxram[base+pos-1];
|
ypos = cps1_gfxram[base+pos-1]&0xff;
|
||||||
flipx = cps1_gfxram[base+pos+1]&0x20;
|
flipx = cps1_gfxram[base+pos+1]&0x20;
|
||||||
flipy = cps1_gfxram[base+pos+1]&0x40;
|
flipy = cps1_gfxram[base+pos+1]&0x40;
|
||||||
colour = cps1_gfxram[base+pos+1]&0x1f;
|
colour = cps1_gfxram[base+pos+1]&0x1f;
|
||||||
|
Loading…
Reference in New Issue
Block a user