summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/lethalj.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/lethalj.cpp')
-rw-r--r--src/mame/video/lethalj.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/video/lethalj.cpp b/src/mame/video/lethalj.cpp
index d813632965b..0eda14955c9 100644
--- a/src/mame/video/lethalj.cpp
+++ b/src/mame/video/lethalj.cpp
@@ -187,22 +187,22 @@ void lethalj_state::blitter_w(offs_t offset, uint16_t data, uint16_t mem_mask)
TMS340X0_SCANLINE_IND16_CB_MEMBER(lethalj_state::scanline_update)
{
- uint16_t *src = &m_screenram[(m_vispage << 17) | ((params->rowaddr << 9) & 0x3fe00)];
- uint16_t *dest = &bitmap.pix16(scanline);
+ uint16_t const *const src = &m_screenram[(m_vispage << 17) | ((params->rowaddr << 9) & 0x3fe00)];
+ uint16_t *const dest = &bitmap.pix(scanline);
int coladdr = params->coladdr << 1;
- int x;
/* blank palette: fill with white */
if (m_blank_palette)
{
- for (x = params->heblnk; x < params->hsblnk; x++)
+ for (int x = params->heblnk; x < params->hsblnk; x++)
dest[x] = 0x7fff;
if (scanline == screen.visible_area().max_y)
m_blank_palette = 0;
- return;
}
-
- /* copy the non-blanked portions of this scanline */
- for (x = params->heblnk; x < params->hsblnk; x++)
- dest[x] = src[coladdr++ & 0x1ff] & 0x7fff;
+ else
+ {
+ /* copy the non-blanked portions of this scanline */
+ for (int x = params->heblnk; x < params->hsblnk; x++)
+ dest[x] = src[coladdr++ & 0x1ff] & 0x7fff;
+ }
}