Ejemplo n.º 1
0
void toaplan1_state::demonwld_restore_dsp()
{
	demonwld_dsp(m_dsp_on);
}
Ejemplo n.º 2
0
static STATE_POSTLOAD( demonwld_restore_dsp )
{
	demonwld_dsp(machine, demonwld_dsp_on);
}
Ejemplo n.º 3
0
static STATE_POSTLOAD( demonwld_restore_dsp )
{
	toaplan1_state *state = machine->driver_data<toaplan1_state>();
	demonwld_dsp(machine, state->dsp_on);
}
Ejemplo n.º 4
0
static void demonwld_restore_dsp(running_machine &machine)
{
	toaplan1_state *state = machine.driver_data<toaplan1_state>();
	demonwld_dsp(machine, state->m_dsp_on);
}