mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
fixed array out-of-bounds access in src/mame/video/system1.c (nw)
This commit is contained in:
parent
ba5319d639
commit
72cce1525e
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user