machine/saturn.cpp: removed tag lookup (nw)

This commit is contained in:
Ivan Vangelista 2018-05-28 18:54:06 +02:00
parent 3ad454e86b
commit ce5cf7ae2c

View File

@ -379,8 +379,8 @@ WRITE_LINE_MEMBER(saturn_state::dot_select_w)
{
const XTAL &xtal = state ? MASTER_CLOCK_320 : MASTER_CLOCK_352;
machine().device("maincpu")->set_unscaled_clock(xtal/2);
machine().device("slave")->set_unscaled_clock(xtal/2);
m_maincpu->set_unscaled_clock(xtal/2);
m_slave->set_unscaled_clock(xtal/2);
m_vdp2.dotsel = state ^ 1;
stv_vdp2_dynamic_res_change();