diff options
author | 2016-10-22 22:30:09 -0400 | |
---|---|---|
committer | 2016-10-22 22:30:09 -0400 | |
commit | b83078eb461cc559977292399106dbf781bc7adc (patch) | |
tree | 3428bcfd07bfdd1c4eb2b5ae4a6015c55c2d2e6b /src/devices/video/scn2674.cpp | |
parent | 7d41a1f619f0e03eeaf7acc2edde6c2671779e03 (diff) |
Erase bitmap_rgb32::erase (nw)
Diffstat (limited to 'src/devices/video/scn2674.cpp')
-rw-r--r-- | src/devices/video/scn2674.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/scn2674.cpp b/src/devices/video/scn2674.cpp index 477a169a0d5..afd1a593785 100644 --- a/src/devices/video/scn2674.cpp +++ b/src/devices/video/scn2674.cpp @@ -776,7 +776,7 @@ void scn2674_device::device_timer(emu_timer &timer, device_timer_id id, int para uint32_t scn2674_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) { if (!m_display_enabled) - m_bitmap.erase(cliprect); + m_bitmap.fill(rgb_t::black(), cliprect); else copybitmap(bitmap, m_bitmap, 0, 0, 0, 0, cliprect); |