exidy440.cpp: Fix crash/assertion failure caused by palette having too few entries

This commit is contained in:
AJR 2019-09-10 14:48:37 -04:00
parent e4f1fad214
commit e52c9cc290

View File

@ -462,7 +462,7 @@ uint32_t topsecex_state::screen_update_topsecex(screen_device &screen, bitmap_in
void exidy440_state::exidy440_video(machine_config &config)
{
PALETTE(config, m_palette). set_entries(256);
PALETTE(config, m_palette).set_entries(512);
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
m_screen->set_video_attributes(VIDEO_ALWAYS_UPDATE);