(MESS) fixed uninitialized member in src/mess/video/nubus_48gc.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-07 09:22:22 +00:00
parent a4e80715da
commit 452c1a8851

View File

@ -130,6 +130,7 @@ void jmfb_device::device_reset()
m_base = 0;
m_xres = 640;
m_yres = 480;
m_mode = 0;
memset(m_vram, 0, VRAM_SIZE);
}