mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
Merge pull request #7985 from brijohn/qx10_fix_segfault
qx10: allocate enough vram for color mode
This commit is contained in:
commit
c4460d6939
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user