From f2bc78e831c1b1cf986ef8ae9f532f83e985555f Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Wed, 21 Apr 2021 00:22:18 -0400 Subject: [PATCH] qx10: allocate enough vram for color mode --- src/mame/drivers/qx10.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/qx10.cpp b/src/mame/drivers/qx10.cpp index 4e51c18afc9..91ba7edad9c 100644 --- a/src/mame/drivers/qx10.cpp +++ b/src/mame/drivers/qx10.cpp @@ -715,7 +715,7 @@ GFXDECODE_END void qx10_state::video_start() { // allocate memory - m_video_ram = make_unique_clear(0x30000); + m_video_ram = make_unique_clear(0x60000); } void qx10_state::qx10_palette(palette_device &palette) const