Audited and added GAME_SUPPORTS_SAVE to 4enraya [MooglyGuy]

This commit is contained in:
Ryan Holtz 2009-01-03 04:30:04 +00:00
parent 0ff277afe4
commit a783dfc3c6

View File

@ -155,6 +155,10 @@ static GFXDECODE_START( 4enraya )
GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 8 )
GFXDECODE_END
static MACHINE_START( 4enraya )
{
state_save_register_global(machine, soundlatch);
}
static MACHINE_DRIVER_START( 4enraya )
@ -177,6 +181,8 @@ static MACHINE_DRIVER_START( 4enraya )
MDRV_VIDEO_START(4enraya)
MDRV_VIDEO_UPDATE(4enraya)
MDRV_MACHINE_START(4enraya)
/* sound hardware */
MDRV_SPEAKER_STANDARD_MONO("mono")
MDRV_SOUND_ADD("ay", AY8910, 8000000/4 /* guess */)
@ -203,4 +209,4 @@ ROM_START( 4enraya )
ROM_LOAD( "1.bpr", 0x0000, 0x0020, CRC(dcbd2352) SHA1(ce72e84129ed1b455aaf648e1dfaa4333e7e7628) ) /* not used */
ROM_END
GAME( 1990, 4enraya, 0, 4enraya, 4enraya, 0, ROT0, "IDSA", "4 En Raya", 0 )
GAME( 1990, 4enraya, 0, 4enraya, 4enraya, 0, ROT0, "IDSA", "4 En Raya", GAME_SUPPORTS_SAVE )