diff options
Diffstat (limited to 'src/mame/drivers/cdi.cpp')
-rw-r--r-- | src/mame/drivers/cdi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/cdi.cpp b/src/mame/drivers/cdi.cpp index 94e939df12b..f5579cf659a 100644 --- a/src/mame/drivers/cdi.cpp +++ b/src/mame/drivers/cdi.cpp @@ -402,7 +402,7 @@ void cdi_state::draw_lcd(int y) if (y >= 22 || !m_slave_hle.found()) return; - uint32_t *scanline = &m_lcdbitmap.pix32(y); + uint32_t *scanline = &m_lcdbitmap.pix(y); for (int lcd = 0; lcd < 8; lcd++) { |