예제 #1
0
void toaplan1_state::demonwld_restore_dsp()
{
	demonwld_dsp(m_dsp_on);
}
예제 #2
0
파일: toaplan1.c 프로젝트: nitrologic/emu
static STATE_POSTLOAD( demonwld_restore_dsp )
{
	demonwld_dsp(machine, demonwld_dsp_on);
}
예제 #3
0
static STATE_POSTLOAD( demonwld_restore_dsp )
{
	toaplan1_state *state = machine->driver_data<toaplan1_state>();
	demonwld_dsp(machine, state->dsp_on);
}
예제 #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);
}