We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b872e commit cb9ca12Copy full SHA for cb9ca12
src/devices/bus/spectrum/ay/slot.cpp
@@ -106,10 +106,9 @@ void spectrum_ay_device::device_reset()
106
107
void spectrum_ay_device::device_add_mconfig(machine_config &config)
108
{
109
- m_ay0
110
-.add_route(0, DEVICE_SELF_OWNER, 1.0, 0)
111
-.add_route(1, DEVICE_SELF_OWNER, 1.0, 1)
112
-.add_route(2, DEVICE_SELF_OWNER, 1.0, 2);
+ m_ay0->add_route(0, DEVICE_SELF_OWNER, 1.0, 0)
+ .add_route(1, DEVICE_SELF_OWNER, 1.0, 1)
+ .add_route(2, DEVICE_SELF_OWNER, 1.0, 2);
113
if (m_ay1)
114
115
m_ay1->add_route(0, DEVICE_SELF_OWNER, 1.0, 0)
0 commit comments