Exemple #1
0
static void get_tx_tile_info(int tile_index)
{
	int offset = get_tile_addr(tile_index);
	int code = tceptor_tile_ram[offset];
	int color = tceptor_tile_attr[offset];

	SET_TILE_INFO(0, code, color, 0);
}
Exemple #2
0
static TILE_GET_INFO( get_tx_tile_info )
{
	tceptor_state *state = machine.driver_data<tceptor_state>();
	int offset = get_tile_addr(tile_index);
	int code = state->m_tile_ram[offset];
	int color = state->m_tile_attr[offset];

	tileinfo->group = color;

	SET_TILE_INFO(0, code, color, 0);
}