summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/memarray.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/memarray.h
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/memarray.h')
-rw-r--r--src/emu/memarray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/memarray.h b/src/emu/memarray.h
index 14b70217276..173af39955d 100644
--- a/src/emu/memarray.h
+++ b/src/emu/memarray.h
@@ -70,7 +70,7 @@ public:
// entry-level readers and writers
UINT32 read(int index) { return (this->*m_read_entry)(index); }
void write(int index, UINT32 data) { (this->*m_write_entry)(index, data); }
-
+
// byte/word/dword-level readers and writers
UINT8 read8(offs_t offset) { return reinterpret_cast<UINT8 *>(m_base)[offset]; }
UINT16 read16(offs_t offset) { return reinterpret_cast<UINT16 *>(m_base)[offset]; }