summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tapatune.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tapatune.cpp')
-rw-r--r--src/mame/drivers/tapatune.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tapatune.cpp b/src/mame/drivers/tapatune.cpp
index e98f02f8b83..7ce930e02eb 100644
--- a/src/mame/drivers/tapatune.cpp
+++ b/src/mame/drivers/tapatune.cpp
@@ -180,10 +180,10 @@ MC6845_BEGIN_UPDATE( tapatune_state::crtc_begin_update )
MC6845_UPDATE_ROW( tapatune_state::crtc_update_row )
{
- uint32_t *dest = &bitmap.pix32(y);
+ uint32_t *const dest = &bitmap.pix(y);
offs_t offs = (ma*2 + ra*0x40)*4;
- uint8_t *videoram = reinterpret_cast<uint8_t *>(m_videoram.target());
+ uint8_t const *const videoram = reinterpret_cast<uint8_t *>(m_videoram.target());
for (uint32_t x = 0; x < x_count*4; x++)
{