summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-10-22 22:30:09 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-10-22 22:30:09 -0400
commitb83078eb461cc559977292399106dbf781bc7adc (patch)
tree3428bcfd07bfdd1c4eb2b5ae4a6015c55c2d2e6b /src/emu
parent7d41a1f619f0e03eeaf7acc2edde6c2671779e03 (diff)
Erase bitmap_rgb32::erase (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/drivers/empty.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drivers/empty.cpp b/src/emu/drivers/empty.cpp
index abb8d66bd94..65e0821a8fa 100644
--- a/src/emu/drivers/empty.cpp
+++ b/src/emu/drivers/empty.cpp
@@ -32,7 +32,7 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
- bitmap.erase(cliprect);
+ bitmap.fill(rgb_t::black(), cliprect);
return 0;
}
};