mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
(MESS) fixed uninitialized memory in src/mess/video/kc.c (nw)
This commit is contained in:
parent
8121ff789f
commit
143f47f976
@ -190,6 +190,7 @@ UINT32 kc85_4_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap,
|
||||
void kc_state::video_start()
|
||||
{
|
||||
m_video_ram = machine().memory().region_alloc("videoram", 0x4000, 1, ENDIANNESS_LITTLE)->base();
|
||||
memset(m_video_ram, 0, 0x4000);
|
||||
|
||||
m_kc85_blink_state = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user