mirror of
https://github.com/holub/mame
synced 2025-10-05 16:50:57 +03:00
added missing initialization in src/emu/memarray.c (nw)
This commit is contained in:
parent
74b7e02525
commit
ddf0b4f24b
@ -52,7 +52,10 @@ memory_array::memory_array()
|
|||||||
: m_base(NULL),
|
: m_base(NULL),
|
||||||
m_bytes(0),
|
m_bytes(0),
|
||||||
m_membits(0),
|
m_membits(0),
|
||||||
m_bytes_per_entry(0)
|
m_endianness(ENDIANNESS_LITTLE),
|
||||||
|
m_bytes_per_entry(0),
|
||||||
|
m_reader(NULL),
|
||||||
|
m_writer(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user