summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/osbexec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/osbexec.cpp')
-rw-r--r--src/mame/drivers/osbexec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/osbexec.cpp b/src/mame/drivers/osbexec.cpp
index 467ab3c0b7d..a1cb78acae9 100644
--- a/src/mame/drivers/osbexec.cpp
+++ b/src/mame/drivers/osbexec.cpp
@@ -465,7 +465,7 @@ TIMER_CALLBACK_MEMBER(osbexec_state::osbexec_video_callback)
if ( y < 240 )
{
uint16_t row_addr = ( y / 10 ) * 128;
- uint16_t *p = &m_bitmap.pix16(y);
+ uint16_t *const p = &m_bitmap.pix(y);
uint8_t char_line = y % 10;
for ( int x = 0; x < 80; x++ )