Previous 199869 Revisions Next

r19833 Wednesday 26th December, 2012 at 13:06:11 UTC by Oliver Stöneberg
added missing initialization of memory_share.m_next (nw)
[src/emu]memory.h

trunk/src/emu/memory.h
r19832r19833
729729public:
730730   // construction/destruction
731731   memory_share(UINT8 width, size_t bytes, void *ptr = NULL)
732      : m_ptr(ptr),
732      : m_next(NULL),
733        m_ptr(ptr),
733734        m_bytes(bytes),
734735        m_width(width) { }
735736

Previous 199869 Revisions Next


© 1997-2024 The MAME Team