summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/m50458.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/m50458.c')
-rw-r--r--src/emu/video/m50458.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/m50458.c b/src/emu/video/m50458.c
index 2f0b66e2f00..7e339f35f4e 100644
--- a/src/emu/video/m50458.c
+++ b/src/emu/video/m50458.c
@@ -148,7 +148,7 @@ const address_space_config *m50458_device::memory_space_config(address_spacenum
inline UINT16 m50458_device::read_word(offs_t address)
{
- return space()->read_word(address << 1);
+ return space().read_word(address << 1);
}
//-------------------------------------------------
@@ -157,7 +157,7 @@ inline UINT16 m50458_device::read_word(offs_t address)
inline void m50458_device::write_word(offs_t address, UINT16 data)
{
- space()->write_word(address << 1, data);
+ space().write_word(address << 1, data);
}