diff options
Diffstat (limited to 'src/devices/bus/neogeo/mslugx_prot.cpp')
-rw-r--r-- | src/devices/bus/neogeo/mslugx_prot.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/bus/neogeo/mslugx_prot.cpp b/src/devices/bus/neogeo/mslugx_prot.cpp index 567f308414c..41adabc3920 100644 --- a/src/devices/bus/neogeo/mslugx_prot.cpp +++ b/src/devices/bus/neogeo/mslugx_prot.cpp @@ -9,7 +9,9 @@ extern const device_type MSLUGX_PROT = &device_creator<mslugx_prot_device>; mslugx_prot_device::mslugx_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, MSLUGX_PROT, "NeoGeo Protection (Metal Slug X)", tag, owner, clock, "mslugx_prot", __FILE__) + : device_t(mconfig, MSLUGX_PROT, "NeoGeo Protection (Metal Slug X)", tag, owner, clock, "mslugx_prot", __FILE__), + m_mslugx_counter(0), + m_mslugx_command(0) { } |