(MESS) fixed uninitialized memory in src/mess/video/pc_aga.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-03-10 10:42:14 +00:00
parent 7b372a3503
commit 17ac07dde7

View file

@ -749,6 +749,7 @@ VIDEO_START( pc200 )
aga.mda_chr_gen = machine.root_device().memregion("gfx1")->base();
aga.cga_chr_gen = machine.root_device().memregion("gfx1")->base() + 0x1000;
aga.videoram = auto_alloc_array(machine, UINT8, 0x10000);
memset(aga.videoram, 0, sizeof(UINT8) * 0x10000);
}