summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/h63484.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/h63484.c')
-rw-r--r--src/emu/video/h63484.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/h63484.c b/src/emu/video/h63484.c
index 1327162b9dd..4182c2fd988 100644
--- a/src/emu/video/h63484.c
+++ b/src/emu/video/h63484.c
@@ -365,7 +365,7 @@ const rom_entry *h63484_device::device_rom_region() const
inline UINT8 h63484_device::readbyte(offs_t address)
{
- return space()->read_byte(address);
+ return space().read_byte(address);
}
@@ -375,7 +375,7 @@ inline UINT8 h63484_device::readbyte(offs_t address)
inline void h63484_device::writebyte(offs_t address, UINT8 data)
{
- space()->write_byte(address, data);
+ space().write_byte(address, data);
}