mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
Fix crash due to uninitialized variable (nw)
This commit is contained in:
parent
baade3fe0c
commit
9c40809a5b
@ -114,7 +114,8 @@ machine_manager::machine_manager(emu_options &options,osd_interface &osd)
|
|||||||
: m_osd(osd),
|
: m_osd(osd),
|
||||||
m_options(options),
|
m_options(options),
|
||||||
m_web(options),
|
m_web(options),
|
||||||
m_new_driver_pending(NULL)
|
m_new_driver_pending(NULL),
|
||||||
|
m_machine(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user