void irobot_poly_clear(running_machine *machine) { UINT8 *bitmap_base = irobot_bufsel ? polybitmap2 : polybitmap1; _irobot_poly_clear(machine, bitmap_base); }
void irobot_poly_clear(running_machine &machine) { irobot_state *state = machine.driver_data<irobot_state>(); UINT8 *bitmap_base = state->m_bufsel ? state->m_polybitmap2 : state->m_polybitmap1; _irobot_poly_clear(machine, bitmap_base); }