Merge pull request #7985 from brijohn/qx10_fix_segfault

qx10: allocate enough vram for color mode
This commit is contained in:
ajrhacker 2021-04-21 00:45:50 -04:00 committed by GitHub
commit c4460d6939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -715,7 +715,7 @@ GFXDECODE_END
void qx10_state::video_start()
{
// allocate memory
m_video_ram = make_unique_clear<uint16_t[]>(0x30000);
m_video_ram = make_unique_clear<uint16_t[]>(0x60000);
}
void qx10_state::qx10_palette(palette_device &palette) const