Previous 199869 Revisions Next

r21743 Saturday 9th March, 2013 at 08:03:30 UTC by Oliver Stöneberg
(MESS) fixed uninitialized memory in src/mess/video/gf4500.c (nw)
[src/mess/video]gf4500.c

trunk/src/mess/video/gf4500.c
r21742r21743
4242static void gf4500_init( running_machine &machine)
4343{
4444   gf4500.data = auto_alloc_array( machine, UINT32, 0x140000 / 4);
45   memset(gf4500.data, 0, sizeof(UINT32) * 0x140000 / 4);
4546   gf4500.screen_x = gf4500.screen_y = 0;
4647   gf4500.screen_x_max = gf4500.screen_y_max = gf4500.screen_x_min = gf4500.screen_y_min = 0;
4748   machine.primary_screen->register_screen_bitmap(gf4500.bitmap);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team