mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
atarigt.cpp : Updates, Cleanups (#3643)
This commit is contained in:
parent
fbeb1cdb24
commit
afa66e6b8d
@ -64,8 +64,7 @@ TILE_GET_INFO_MEMBER(atarigt_state::get_playfield_tile_info)
|
||||
|
||||
TILEMAP_MAPPER_MEMBER(atarigt_state::atarigt_playfield_scan)
|
||||
{
|
||||
int bank = 1 - (col / (num_cols / 2));
|
||||
return bank * (num_rows * num_cols / 2) + row * (num_cols / 2) + (col % (num_cols / 2));
|
||||
return (((col & 0x40) ^ 0x40) << 6) | ((row & 0x3f) << 6) | (col & 0x3f);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user