summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/orao.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/orao.cpp')
-rw-r--r--src/mame/drivers/orao.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/orao.cpp b/src/mame/drivers/orao.cpp
index d6ec83ef9b3..65cd7f81a71 100644
--- a/src/mame/drivers/orao.cpp
+++ b/src/mame/drivers/orao.cpp
@@ -266,7 +266,7 @@ u32 orao_state::screen_update_orao(screen_device &screen, bitmap_ind16 &bitmap,
u8 code = m_vram[addr++];
for (u8 b = 0; b < 8; b++)
{
- bitmap.pix16(y, horpos++) = (code >> b) & 0x01;
+ bitmap.pix(y, horpos++) = (code >> b) & 0x01;
}
}
}