drgnmst.cpp : Add notes, Fix 8x8 tile bank

This commit is contained in:
cam900 2018-11-23 15:59:30 +09:00 committed by GitHub
parent 25100fc16e
commit b746acc0b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,7 @@ TILE_GET_INFO_MEMBER(drgnmst_state::get_fg_tile_info)
colour = m_fg_videoram[tile_index * 2 + 1] & 0x1f;
flipyx = (m_fg_videoram[tile_index * 2 + 1] & 0x60)>>5;
tileno |= (BIT(tile_index, 5)) << 15; // 8x8 tile bank seems like cps1
SET_TILE_INFO_MEMBER(1, tileno, colour, TILE_FLIPYX(flipyx));
}