summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xevious.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-03-28 21:28:30 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-03-28 21:28:30 -0400
commit293c6bd627fb5fec423c80e690ff87322a7e07c3 (patch)
tree194997206f9be4d528cef9f99f0bf69bc9daaa5e /src/mame/machine/xevious.cpp
parent28e8cc6674b643406257bb98af0f8e4037cfa38a (diff)
galaga.cpp, pacland.cpp, tceptor.cpp: Replace MCFG_CPU_VBLANK_INT with line callbacks (nw)
Diffstat (limited to 'src/mame/machine/xevious.cpp')
-rw-r--r--src/mame/machine/xevious.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/machine/xevious.cpp b/src/mame/machine/xevious.cpp
index 57104d93912..833c352eee2 100644
--- a/src/mame/machine/xevious.cpp
+++ b/src/mame/machine/xevious.cpp
@@ -175,7 +175,8 @@ READ8_MEMBER( xevious_state::battles_input_port_r )
}
-INTERRUPT_GEN_MEMBER(xevious_state::battles_interrupt_4)
+WRITE_LINE_MEMBER(xevious_state::battles_interrupt_4)
{
- device.execute().set_input_line(0, HOLD_LINE);
+ if (state)
+ m_subcpu3->set_input_line(0, HOLD_LINE);
}