summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/lisa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/lisa.c')
-rw-r--r--src/mess/machine/lisa.c2
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;
}