| 4358 | } |
| 4359 | |
| 4360 | void inputdevice_playevents(void) |
| 4361 | { |
| 4362 | inprec_playdiskchange(); |
| 4363 | int nr, state, max, autofire; |
| 4364 | while (inprec_playevent(&nr, &state, &max, &autofire)) |
| 4365 | handle_input_event(nr, state, max, (autofire ? HANDLE_IE_FLAG_AUTOFIRE : 0) | HANDLE_IE_FLAG_PLAYBACKEVENT); |
| 4366 | } |
| 4367 | |
| 4368 | // strobe slot is clock for pot counters |
| 4369 | void inputdevice_hsync_strobe(void) |
no test coverage detected