summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/epic14e.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/epic14e.cpp')
-rw-r--r--src/mame/drivers/epic14e.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/epic14e.cpp b/src/mame/drivers/epic14e.cpp
index a32884f75ee..65647de0e8b 100644
--- a/src/mame/drivers/epic14e.cpp
+++ b/src/mame/drivers/epic14e.cpp
@@ -61,7 +61,7 @@ SCN2672_DRAW_CHARACTER_MEMBER(epic14e_state::draw_character)
for (int i = 0; i < 9; i++)
{
- bitmap.pix32(y, x++) = BIT(dots, 8) ? rgb_t::white() : rgb_t::black();
+ bitmap.pix(y, x++) = BIT(dots, 8) ? rgb_t::white() : rgb_t::black();
dots <<= 1;
}
}