summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pastelg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pastelg.cpp')
-rw-r--r--src/mame/video/pastelg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/pastelg.cpp b/src/mame/video/pastelg.cpp
index 8e30aa709a4..c15ea0eea58 100644
--- a/src/mame/video/pastelg.cpp
+++ b/src/mame/video/pastelg.cpp
@@ -286,7 +286,7 @@ uint32_t pastelg_common_state::screen_update(screen_device &screen, bitmap_ind16
for (int y = 0; y < height; y++)
for (int x = 0; x < width; x++)
- bitmap.pix16(y, x) = m_videoram[(y * width) + x];
+ bitmap.pix(y, x) = m_videoram[(y * width) + x];
}
else
bitmap.fill(0, cliprect);