Fix gcc 4.8 compile (nw)

This commit is contained in:
Alex W. Jackson 2014-02-20 21:58:19 +00:00
parent d3ca564778
commit 0c435bf290

View File

@ -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<UINT8 *>(memory)),
m_allocated(NULL)
m_data(reinterpret_cast<UINT8 *>(memory))
{
VPRINTF(("block_allocate('%s',%s,%08X,%08X,%p)\n", space.device().tag(), space.name(), bytestart, byteend, memory));