summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/315_5124.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-02-24 14:07:24 +0100
committer Olivier Galibert <galibert@pobox.com>2018-02-24 14:09:46 +0100
commitc5345b9ea8a5b6939c55621024bce8e1eade4fdd (patch)
treed75c88692ac40de1f5d7b0a647de7aa4b987bcdc /src/devices/video/315_5124.cpp
parent1b9a2d8891b1c809f56622380447500e9716790d (diff)
Grammar police (nw)
Diffstat (limited to 'src/devices/video/315_5124.cpp')
-rw-r--r--src/devices/video/315_5124.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/315_5124.cpp b/src/devices/video/315_5124.cpp
index f6d51ac84c6..437fe28a79b 100644
--- a/src/devices/video/315_5124.cpp
+++ b/src/devices/video/315_5124.cpp
@@ -567,7 +567,7 @@ READ8_MEMBER( sega315_5124_device::vram_read )
/* Return read buffer contents */
temp = m_buffer;
- if ( !machine().side_effect_disabled() )
+ if ( !machine().side_effects_disabled() )
{
/* Load read buffer */
m_buffer = this->space().read_byte(m_addr & 0x3fff);
@@ -634,7 +634,7 @@ READ8_MEMBER( sega315_5124_device::register_read )
check_pending_flags();
temp = m_status;
- if ( !machine().side_effect_disabled() )
+ if ( !machine().side_effects_disabled() )
{
/* Clear pending write flag */
m_pending_reg_write = 0;