summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/ut88.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/ut88.c')
-rw-r--r--src/mess/video/ut88.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/video/ut88.c b/src/mess/video/ut88.c
index 34f9b41c3a3..4f796cfe53f 100644
--- a/src/mess/video/ut88.c
+++ b/src/mess/video/ut88.c
@@ -35,7 +35,7 @@ UINT32 ut88_state::screen_update_ut88(screen_device &screen, bitmap_ind16 &bitma
{
int code = m_p_videoram[ x + y*64 ] & 0x7f;
int attr = m_p_videoram[ x+1 + y*64 ] & 0x80;
- m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, code | attr, 0, 0,0, x*8,y*8);
+ m_gfxdecode->gfx(0)->opaque(m_palette,bitmap,cliprect, code | attr, 0, 0,0, x*8,y*8);
}
}
return 0;