diff options
author | 2014-03-19 11:03:38 +0000 | |
---|---|---|
committer | 2014-03-19 11:03:38 +0000 | |
commit | f27a84da26c7dc7fb06de8306c7b235acaa647fd (patch) | |
tree | 50b71fc30250dd0431f1b1ad4f0bb155967f1f96 /src/mess/video/ut88.c | |
parent | 9e73dd723ba03812672d90678218457982c8a9c0 (diff) |
Removed palette_device parameter from gfx draw methods. All draw methods now use m_palette (nw)
Diffstat (limited to 'src/mess/video/ut88.c')
-rw-r--r-- | src/mess/video/ut88.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |