From 0c435bf290de038503c7886ae4414e286a6b036e Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Thu, 20 Feb 2014 21:58:19 +0000 Subject: [PATCH] Fix gcc 4.8 compile (nw) --- src/emu/memory.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/emu/memory.c b/src/emu/memory.c index e7bcd511994..0b19dc94120 100644 --- a/src/emu/memory.c +++ b/src/emu/memory.c @@ -4076,8 +4076,7 @@ memory_block::memory_block(address_space &space, offs_t bytestart, offs_t byteen m_space(space), m_bytestart(bytestart), m_byteend(byteend), - m_data(reinterpret_cast(memory)), - m_allocated(NULL) + m_data(reinterpret_cast(memory)) { VPRINTF(("block_allocate('%s',%s,%08X,%08X,%p)\n", space.device().tag(), space.name(), bytestart, byteend, memory));