summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/avgdvg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/avgdvg.cpp')
-rw-r--r--src/mame/video/avgdvg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/video/avgdvg.cpp b/src/mame/video/avgdvg.cpp
index fe8727d5688..dee459d4e4d 100644
--- a/src/mame/video/avgdvg.cpp
+++ b/src/mame/video/avgdvg.cpp
@@ -771,7 +771,8 @@ int avg_mhavoc_device::handler_6() // mhavoc_strobe2
if (m_dvy & 0x800)
{
m_enspkl = 1;
- m_spkl_shift = bitswap<4>(m_dvy, 0, 1, 2, 3) | ((machine().rand() & 0x7) << 4); // sparkle lfsr bits 4,5,6 here come from address bus bits 0,1,2 from the alpha cpu, they're not truly random.
+ // sparkle LFSR bits 4,5,6 here come from alpha CPU address bus bits 0,1,2, they're not truly random.
+ m_spkl_shift = bitswap<4>(m_dvy, 0, 1, 2, 3) | ((machine().rand() & 0x7) << 4);
}
else
{