mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +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()
|
void qx10_state::video_start()
|
||||||
{
|
{
|
||||||
// allocate memory
|
// 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
|
void qx10_state::qx10_palette(palette_device &palette) const
|
||||||
|
Loading…
Reference in New Issue
Block a user