diff options
Diffstat (limited to 'src/emu/cpuint.c')
| -rw-r--r-- | src/emu/cpuint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpuint.c b/src/emu/cpuint.c index 256801dafa0..2d9acfb0061 100644 --- a/src/emu/cpuint.c +++ b/src/emu/cpuint.c @@ -306,7 +306,7 @@ void cpunum_set_input_line_and_vector(int cpunum, int line, int state, int vecto if (event_index >= MAX_INPUT_EVENTS) { input_event_index[cpunum][line]--; - cpunum_empty_event_queue(Machine, cpunum | (line << 8)); + cpunum_empty_event_queue(Machine, NULL, cpunum | (line << 8)); event_index = input_event_index[cpunum][line]++; logerror("Exceeded pending input line event queue on CPU %d!\n", cpunum); } @@ -318,7 +318,7 @@ void cpunum_set_input_line_and_vector(int cpunum, int line, int state, int vecto /* if this is the first one, set the timer */ if (event_index == 0) - timer_call_after_resynch(cpunum | (line << 8), cpunum_empty_event_queue); + timer_call_after_resynch(NULL, cpunum | (line << 8), cpunum_empty_event_queue); } } } |
