mirror of
https://github.com/holub/mame
synced 2025-05-15 02:18:16 +03:00
spikes91 is also clearly meant to run at a lower resolution..
This commit is contained in:
parent
7c28627595
commit
032c1ddaee
@ -1375,7 +1375,7 @@ static MACHINE_DRIVER_START( spikes91 )
|
||||
MDRV_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
|
||||
MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
|
||||
MDRV_SCREEN_SIZE(64*8, 32*8)
|
||||
MDRV_SCREEN_VISIBLE_AREA(0*8+4, 44*8+4-1, 0*8, 30*8-1)
|
||||
MDRV_SCREEN_VISIBLE_AREA(0*8, 320-1, 0*8+4, 224+4-1)
|
||||
MDRV_GFXDECODE(spikes91)
|
||||
MDRV_PALETTE_LENGTH(2048)
|
||||
|
||||
|
@ -573,7 +573,7 @@ static void spikes91_draw_sprites(running_machine *machine, bitmap_t *bitmap,con
|
||||
|
||||
if (!code) continue;
|
||||
|
||||
xpos = (aerofgt_spriteram3[i + 2] & 0x01ff) - 13;
|
||||
xpos = (aerofgt_spriteram3[i + 2] & 0x01ff) - 16;
|
||||
ypos = 256 - (aerofgt_spriteram3[i + 1] & 0x00ff) - 26;
|
||||
flipy = 0;
|
||||
flipx = aerofgt_spriteram3[i + 3] & 0x8000;
|
||||
|
Loading…
Reference in New Issue
Block a user