mirror of
https://github.com/holub/mame
synced 2025-05-25 07:15:25 +03:00
forgot to save one last change I did to arkanoid.c...
This commit is contained in:
parent
dcb1342d42
commit
d9967c1e94
@ -797,7 +797,7 @@ static const ay8910_interface ay8910_config =
|
||||
|
||||
/* Machine Drivers */
|
||||
|
||||
MACHINE_START( arkanoid )
|
||||
static MACHINE_START( arkanoid )
|
||||
{
|
||||
arkanoid_state *state = (arkanoid_state *)machine->driver_data;
|
||||
|
||||
@ -820,7 +820,7 @@ MACHINE_START( arkanoid )
|
||||
state_save_register_global(machine, state->palettebank);
|
||||
}
|
||||
|
||||
MACHINE_RESET( arkanoid )
|
||||
static MACHINE_RESET( arkanoid )
|
||||
{
|
||||
arkanoid_state *state = (arkanoid_state *)machine->driver_data;
|
||||
|
||||
|
@ -47,9 +47,6 @@ extern VIDEO_UPDATE( arkanoid );
|
||||
|
||||
/*----------- defined in machine/arkanoid.c -----------*/
|
||||
|
||||
extern MACHINE_START( arkanoid );
|
||||
extern MACHINE_RESET( arkanoid );
|
||||
|
||||
extern READ8_HANDLER( arkanoid_Z80_mcu_r );
|
||||
extern WRITE8_HANDLER( arkanoid_Z80_mcu_w );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user