summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/msx_matsushita.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/msx_matsushita.cpp')
-rw-r--r--src/mame/machine/msx_matsushita.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/msx_matsushita.cpp b/src/mame/machine/msx_matsushita.cpp
index c4fbcdfa9bb..427f22aa0ac 100644
--- a/src/mame/machine/msx_matsushita.cpp
+++ b/src/mame/machine/msx_matsushita.cpp
@@ -85,7 +85,7 @@ READ8_MEMBER(msx_matsushita_device::switched_read)
{
uint8_t result = (((m_pattern & 0x80) ? m_nibble1 : m_nibble2) << 4) | ((m_pattern & 0x40) ? m_nibble1 : m_nibble2);
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_pattern = (m_pattern << 2) | (m_pattern >> 6);
return result;