Merge pull request #2379 from TheHpman/patch-1

Update neogeo_spr.cpp
This commit is contained in:
R. Belmont 2017-06-16 14:21:28 -04:00 committed by GitHub
commit 9824c4c62c

View File

@ -407,7 +407,7 @@ void neosprite_base_device::draw_sprites(bitmap_rgb32 &bitmap, int scanline)
attr_and_code_offs = (sprite_number << 6) | (tile << 1);
attr = m_videoram_drawsource[attr_and_code_offs + 1];
code = ((attr << 12) & 0x70000) | m_videoram_drawsource[attr_and_code_offs];
code = ((attr << 12) & 0xf0000) | m_videoram_drawsource[attr_and_code_offs];
/* substitute auto animation bits */
if (!m_auto_animation_disabled)