| 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 |
| r21742 | r21743 | |
|---|---|---|
| 42 | 42 | static void gf4500_init( running_machine &machine) |
| 43 | 43 | { |
| 44 | 44 | gf4500.data = auto_alloc_array( machine, UINT32, 0x140000 / 4); |
| 45 | memset(gf4500.data, 0, sizeof(UINT32) * 0x140000 / 4); | |
| 45 | 46 | gf4500.screen_x = gf4500.screen_y = 0; |
| 46 | 47 | gf4500.screen_x_max = gf4500.screen_y_max = gf4500.screen_x_min = gf4500.screen_y_min = 0; |
| 47 | 48 | machine.primary_screen->register_screen_bitmap(gf4500.bitmap); |
| Previous | 199869 Revisions | Next |