fixed uninitialized variable in src/emu/video/saa5050.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-16 12:08:58 +00:00
parent 0f71d79444
commit 0536992912

View File

@ -217,6 +217,7 @@ void saa5050_device::device_start()
void saa5050_device::device_reset()
{
m_ra = 0;
m_double_height_bottom_row = 0;
}