mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +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:
|
||||
// construction/destruction
|
||||
memory_share(UINT8 width, size_t bytes, void *ptr = NULL)
|
||||
: m_ptr(ptr),
|
||||
: m_next(NULL),
|
||||
m_ptr(ptr),
|
||||
m_bytes(bytes),
|
||||
m_width(width) { }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user