summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/eolith.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/eolith.cpp')
-rw-r--r--src/mame/video/eolith.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/eolith.cpp b/src/mame/video/eolith.cpp
index c31fea64fc2..fa18bbb3709 100644
--- a/src/mame/video/eolith.cpp
+++ b/src/mame/video/eolith.cpp
@@ -34,7 +34,7 @@ uint32_t eolith_state::screen_update_eolith(screen_device &screen, bitmap_ind16
{
for (int x = 0; x < 320; x++)
{
- bitmap.pix16(y, x) = m_vram[(0x40000/2) * (m_buffer ^ 1) + (y * 336) + x] & 0x7fff;
+ bitmap.pix(y, x) = m_vram[(0x40000/2) * (m_buffer ^ 1) + (y * 336) + x] & 0x7fff;
}
}