summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/blstroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/blstroid.cpp')
-rw-r--r--src/mame/video/blstroid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/blstroid.cpp b/src/mame/video/blstroid.cpp
index e903a2be935..d71c2db6ca0 100644
--- a/src/mame/video/blstroid.cpp
+++ b/src/mame/video/blstroid.cpp
@@ -152,8 +152,8 @@ uint32_t blstroid_state::screen_update_blstroid(screen_device &screen, bitmap_in
for (const sparse_dirty_rect *rect = m_mob->first_dirty_rect(cliprect); rect != nullptr; rect = rect->next())
for (int y = rect->top(); y <= rect->bottom(); y++)
{
- uint16_t *mo = &mobitmap.pix16(y);
- uint16_t *pf = &bitmap.pix16(y);
+ uint16_t const *const mo = &mobitmap.pix(y);
+ uint16_t *const pf = &bitmap.pix(y);
for (int x = rect->left(); x <= rect->right(); x++)
if (mo[x] != 0xffff)
{
@@ -161,7 +161,7 @@ uint32_t blstroid_state::screen_update_blstroid(screen_device &screen, bitmap_in
priority address = HPPPMMMM
*/
- int priaddr = ((pf[x] & 8) << 4) | (pf[x] & 0x70) | ((mo[x] & 0xf0) >> 4);
+ int const priaddr = ((pf[x] & 8) << 4) | (pf[x] & 0x70) | ((mo[x] & 0xf0) >> 4);
if (m_priorityram[priaddr] & 1)
pf[x] = mo[x];
}