mirror of
https://github.com/holub/mame
synced 2025-10-08 01:28:00 +03:00
added missing initialization of memory_share.m_next (nw)
This commit is contained in:
parent
f13190914e
commit
b063bf769d
@ -729,7 +729,8 @@ class memory_share
|
|||||||
public:
|
public:
|
||||||
// construction/destruction
|
// construction/destruction
|
||||||
memory_share(UINT8 width, size_t bytes, void *ptr = NULL)
|
memory_share(UINT8 width, size_t bytes, void *ptr = NULL)
|
||||||
: m_ptr(ptr),
|
: m_next(NULL),
|
||||||
|
m_ptr(ptr),
|
||||||
m_bytes(bytes),
|
m_bytes(bytes),
|
||||||
m_width(width) { }
|
m_width(width) { }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user