summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-02-18 13:24:04 +0100
committer hap <happppp@users.noreply.github.com>2021-02-18 13:24:18 +0100
commiteefa10a7c32a562d92afd91022b170b2e12bf6b8 (patch)
treeb246ae929d26172074ca75641d9981167a7552a7 /src
parentd0fd9649e40f902843e9a731b2ed38420a91e542 (diff)
deco_mlc: fix copypaste error with prev commit
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/hh_sm510.cpp2
-rw-r--r--src/mame/video/deco_mlc.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hh_sm510.cpp b/src/mame/drivers/hh_sm510.cpp
index c3e3209102d..ae232064221 100644
--- a/src/mame/drivers/hh_sm510.cpp
+++ b/src/mame/drivers/hh_sm510.cpp
@@ -578,7 +578,7 @@ INPUT_PORTS_END
void gnw_ball_state::gnw_ball(machine_config &config)
{
- sm5a_common(config, 1671, 1080); // R option mask confirmed
+ sm5a_common(config, 1671, 1080); // R mask option confirmed
}
// roms
diff --git a/src/mame/video/deco_mlc.cpp b/src/mame/video/deco_mlc.cpp
index 75e694fa351..b16bb9d7b89 100644
--- a/src/mame/video/deco_mlc.cpp
+++ b/src/mame/video/deco_mlc.cpp
@@ -307,7 +307,7 @@ void deco_mlc_state::draw_sprites(const rectangle &cliprect, int scanline, u32*
indx &= 0x1fff;
index_ptr = m_vram + indx * 4;
- if (index_ptr8[2] & 0x0100 && m_screen->frame_number() & 1)
+ if (index_ptr[2] & 0x0100 && m_screen->frame_number() & 1)
continue;
h = (index_ptr[0] >> 8) & 0xf;