comparison blastem.c @ 953:08346262990b

Remove the int number argument to vdp_int_ack since it is no longer used
author Michael Pavone <pavone@retrodev.com>
date Tue, 12 Apr 2016 21:38:24 -0700
parents fec4a59ae5d7
children 229c23b3ab73
comparison
equal deleted inserted replaced
952:7f4a7f07f325 953:08346262990b
288 gen->frame_end = vdp_cycles_to_frame_end(v_context); 288 gen->frame_end = vdp_cycles_to_frame_end(v_context);
289 context->sync_cycle = gen->frame_end; 289 context->sync_cycle = gen->frame_end;
290 //printf("Set sync cycle to: %d @ %d, vcounter: %d, hslot: %d\n", context->sync_cycle, context->current_cycle, v_context->vcounter, v_context->hslot); 290 //printf("Set sync cycle to: %d @ %d, vcounter: %d, hslot: %d\n", context->sync_cycle, context->current_cycle, v_context->vcounter, v_context->hslot);
291 if (context->int_ack) { 291 if (context->int_ack) {
292 //printf("acknowledging %d @ %d:%d, vcounter: %d, hslot: %d\n", context->int_ack, context->current_cycle, v_context->cycles, v_context->vcounter, v_context->hslot); 292 //printf("acknowledging %d @ %d:%d, vcounter: %d, hslot: %d\n", context->int_ack, context->current_cycle, v_context->cycles, v_context->vcounter, v_context->hslot);
293 vdp_int_ack(v_context, context->int_ack); 293 vdp_int_ack(v_context);
294 context->int_ack = 0; 294 context->int_ack = 0;
295 } 295 }
296 if (!address && (break_on_sync || save_state)) { 296 if (!address && (break_on_sync || save_state)) {
297 context->sync_cycle = context->current_cycle + 1; 297 context->sync_cycle = context->current_cycle + 1;
298 } 298 }