summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gladiatr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gladiatr.cpp')
-rw-r--r--src/mame/video/gladiatr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/gladiatr.cpp b/src/mame/video/gladiatr.cpp
index 378c32228c2..bda3c5ed176 100644
--- a/src/mame/video/gladiatr.cpp
+++ b/src/mame/video/gladiatr.cpp
@@ -278,10 +278,10 @@ uint32_t ppking_state::screen_update_ppking(screen_device &screen, bitmap_ind16
int x = sx;
int y = (sy + m_fg_scrolly) & 0x1ff;
- uint16_t *dest = &bitmap.pix16(sy, sx);
+ uint16_t *dest = &bitmap.pix(sy, sx);
while( x <= cliprect.max_x )
{
- if( flagsbitmap.pix8(y, x)&TILEMAP_PIXEL_LAYER0 )
+ if( flagsbitmap.pix(y, x)&TILEMAP_PIXEL_LAYER0 )
{
*dest += 512;
}