(MESS) fixed uninitialized variable in src/mess/machine/lux21046.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 16:40:01 +00:00
parent f037c7fadd
commit 66866c392e

View file

@ -428,6 +428,7 @@ void luxor_55_21046_device::device_start()
void luxor_55_21046_device::device_reset()
{
m_cs = false;
m_data_in = 0;
}