summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ppu2c0x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ppu2c0x.c')
-rw-r--r--src/mame/video/ppu2c0x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ppu2c0x.c b/src/mame/video/ppu2c0x.c
index f9ac115746d..651d85e2db7 100644
--- a/src/mame/video/ppu2c0x.c
+++ b/src/mame/video/ppu2c0x.c
@@ -265,7 +265,7 @@ void ppu2c0x_device::device_start()
inline UINT8 ppu2c0x_device::readbyte(offs_t address)
{
- return space()->read_byte(address);
+ return space().read_byte(address);
}
@@ -275,7 +275,7 @@ inline UINT8 ppu2c0x_device::readbyte(offs_t address)
inline void ppu2c0x_device::writebyte(offs_t address, UINT8 data)
{
- space()->write_byte(address, data);
+ space().write_byte(address, data);
}