summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shuuz.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shuuz.cpp')
-rw-r--r--src/mame/video/shuuz.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/shuuz.cpp b/src/mame/video/shuuz.cpp
index dc62d134373..8c2013e8c4a 100644
--- a/src/mame/video/shuuz.cpp
+++ b/src/mame/video/shuuz.cpp
@@ -88,8 +88,8 @@ uint32_t shuuz_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap,
for (const sparse_dirty_rect *rect = m_vad->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)
{
@@ -107,10 +107,10 @@ uint32_t shuuz_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap,
* +PFS7*(LBD7&LBD6)*!M3*!O13
*
*/
- int o13 = ((pf[x] & 0xf0) == 0xf0);
- int mopf = 0;
+ int const o13 = ((pf[x] & 0xf0) == 0xf0);
/* compute the MO/PF signal */
+ int mopf = 0;
if ((!(pf[x] & 0x80) && ((mo[x] & 0xc0) != 0xc0) && ((mo[x] & 0x0e) != 0x00) && !o13) ||
((pf[x] & 0x80) && ((mo[x] & 0xc0) == 0xc0) && ((mo[x] & 0x0e) != 0x00) && !o13))
mopf = 1;