removed assert for now fixed bug from src/mame/drivers/queen.c (nw)

This commit is contained in:
Oliver Stöneberg 2015-03-24 09:13:30 +01:00
parent eb48fea5e2
commit d044c6b161

View File

@ -158,7 +158,6 @@ static UINT8 piix4_config_r(device_t *busdevice, device_t *device, int function,
queen_state *state = busdevice->machine().driver_data<queen_state>();
// osd_printf_debug("PIIX4: read %d, %02X\n", function, reg);
assert(function >= 0 && function < ARRAY_LENGTH(state->m_piix4_config_reg));
return state->m_piix4_config_reg[function][reg];
}