diff options
author | 2019-09-10 14:48:37 -0400 | |
---|---|---|
committer | 2019-09-10 14:48:37 -0400 | |
commit | e52c9cc290a710c11fef4a08c715e46d04db9f07 (patch) | |
tree | 9d8eaaf0603226b3becfc35591d593f1dc0cc33c /src | |
parent | e4f1fad214b38adabe2981a975b87e2fc9f7448b (diff) |
exidy440.cpp: Fix crash/assertion failure caused by palette having too few entries
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/video/exidy440.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/exidy440.cpp b/src/mame/video/exidy440.cpp index c3a09628098..57ad8a06d80 100644 --- a/src/mame/video/exidy440.cpp +++ b/src/mame/video/exidy440.cpp @@ -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); |