diff options
author | 2018-04-28 16:59:38 +0900 | |
---|---|---|
committer | 2018-04-28 16:59:38 +0900 | |
commit | 96969fa32c84db98c22f2e8069226cedf027f3d4 (patch) | |
tree | 21a36008cfc8b86aade5de8dbd1f3c69bbb27321 | |
parent | f2568bb918b8e551c1b95d4a86cf07ae192cbe80 (diff) |
seibuspi : Fix Typo, Add notes
-rw-r--r-- | src/mame/video/seibuspi.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/video/seibuspi.cpp b/src/mame/video/seibuspi.cpp index 78dfa18d159..e393e87b870 100644 --- a/src/mame/video/seibuspi.cpp +++ b/src/mame/video/seibuspi.cpp @@ -293,7 +293,7 @@ WRITE32_MEMBER(seibuspi_state::tilemap_dma_start_w) /* fore layer row scroll */ if (m_rowscroll_enable) { - memcpy(&m_tilemap_ram[0x1800/4], &m_mainram[index], 0x800/4); + memcpy(&m_tilemap_ram[0x1800/4], &m_mainram[index], 0x800/4); // 0x2800/4? index += 0x800/4; } @@ -313,7 +313,7 @@ WRITE32_MEMBER(seibuspi_state::tilemap_dma_start_w) /* middle layer row scroll */ if (m_rowscroll_enable) { - memcpy(&m_tilemap_ram[0x1800/4], &m_mainram[index], 0x800/4); + memcpy(&m_tilemap_ram[0x2800/4], &m_mainram[index], 0x800/4); // 0x1800/4? index += 0x800/4; } @@ -764,6 +764,7 @@ void seibuspi_state::video_start() m_midl_layer->set_transparent_pen(63); m_fore_layer->set_transparent_pen(63); + // TODO : Differs per games? // alpha blending (preliminary) memset(m_alpha_table, 0, 0x2000); |