diff options
Diffstat (limited to 'src/devices/bus/spectrum/intf1.cpp')
-rw-r--r-- | src/devices/bus/spectrum/intf1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/spectrum/intf1.cpp b/src/devices/bus/spectrum/intf1.cpp index 9e6328eac86..f80a02723ef 100644 --- a/src/devices/bus/spectrum/intf1.cpp +++ b/src/devices/bus/spectrum/intf1.cpp @@ -105,9 +105,9 @@ void spectrum_intf1_device::device_reset() // IMPLEMENTATION //************************************************************************** -int spectrum_intf1_device::romcs() +bool spectrum_intf1_device::romcs() { - return m_romcs | m_exp->romcs(); + return m_romcs || m_exp->romcs(); } // the Interface 1 looks for specific bus conditions to enable / disable the expansion overlay ROM |