summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/huc6272.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/huc6272.c')
-rw-r--r--src/emu/video/huc6272.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/huc6272.c b/src/emu/video/huc6272.c
index b72c20b9ef8..ec4faee84eb 100644
--- a/src/emu/video/huc6272.c
+++ b/src/emu/video/huc6272.c
@@ -42,7 +42,7 @@ const address_space_config *huc6272_device::memory_space_config(address_spacenum
inline UINT32 huc6272_device::read_dword(offs_t address)
{
- return space()->read_dword(address << 2);
+ return space().read_dword(address << 2);
}
@@ -52,7 +52,7 @@ inline UINT32 huc6272_device::read_dword(offs_t address)
inline void huc6272_device::write_dword(offs_t address, UINT32 data)
{
- space()->write_dword(address << 2, data);
+ space().write_dword(address << 2, data);
}
//**************************************************************************