diff options
author | 2014-02-27 13:35:15 +0000 | |
---|---|---|
committer | 2014-02-27 13:35:15 +0000 | |
commit | 64ac8f6776fc4451d756b0eb3bb6dbd22c49801a (patch) | |
tree | bb1d096fecec4684c8ab2b7be1b4d539ca06e57b /src/mess/machine/lisa.c | |
parent | f9d3fbaa73ccdab2e5fcf9fc095a14b4f24c3133 (diff) |
Huge update, palette is now device (nw)
note: Aaron please give more descriptive text for release log I have no more strength :)
Diffstat (limited to 'src/mess/machine/lisa.c')
-rw-r--r-- | src/mess/machine/lisa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/lisa.c b/src/mess/machine/lisa.c index b6a5a4794fd..92189c57185 100644 --- a/src/mess/machine/lisa.c +++ b/src/mess/machine/lisa.c @@ -757,7 +757,7 @@ UINT32 lisa_state::screen_update_lisa(screen_device &screen, bitmap_ind16 &bitma for (x = 0; x < resx; x++) // line_buffer[x] = (v[(x+y*resx)>>4] & (0x8000 >> ((x+y*resx) & 0xf))) ? 0 : 1; line_buffer[x] = (v[(x+y*resx)>>4] & (0x8000 >> (x & 0xf))) ? 0 : 1; - draw_scanline8(bitmap, 0, y, resx, line_buffer, machine().pens); + draw_scanline8(bitmap, 0, y, resx, line_buffer, m_palette->pens()); } return 0; } |