fixed array out-of-bounds access in src/mame/video/system1.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-07-22 10:10:05 +00:00
parent ba5319d639
commit 72cce1525e

View File

@ -135,7 +135,7 @@ void system1_state::video_start_common(int pagecount)
}
/* allocate a temporary bitmap for sprite rendering */
m_sprite_bitmap = auto_bitmap_ind16_alloc(machine(), 512, 256);
m_sprite_bitmap = auto_bitmap_ind16_alloc(machine(), 640, 260);
/* register for save stats */
save_item(NAME(m_video_mode));