summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/msx_s1985.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/msx_s1985.cpp')
-rw-r--r--src/mame/machine/msx_s1985.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/msx_s1985.cpp b/src/mame/machine/msx_s1985.cpp
index f596600c15c..25df008defd 100644
--- a/src/mame/machine/msx_s1985.cpp
+++ b/src/mame/machine/msx_s1985.cpp
@@ -67,7 +67,7 @@ READ8_MEMBER(msx_s1985_device::switched_read)
// Pattern and foreground/background color read
uint8_t data = (m_pattern & 0x80) ? m_color2 : m_color1;
- if(!machine().side_effect_disabled())
+ if(!machine().side_effects_disabled())
m_pattern = (m_pattern << 1) | (m_pattern >> 7);
return data;