From f27a84da26c7dc7fb06de8306c7b235acaa647fd Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Wed, 19 Mar 2014 11:03:38 +0000 Subject: Removed palette_device parameter from gfx draw methods. All draw methods now use m_palette (nw) --- src/mess/video/ut88.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mess/video/ut88.c') diff --git a/src/mess/video/ut88.c b/src/mess/video/ut88.c index 4f796cfe53f..34f9b41c3a3 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(m_palette,bitmap,cliprect, code | attr, 0, 0,0, x*8,y*8); + m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, code | attr, 0, 0,0, x*8,y*8); } } return 0; -- cgit v1.2.3-70-g09d2