summaryrefslogtreecommitdiff
path: root/blastem.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-04-12 21:38:24 -0700
committerMichael Pavone <pavone@retrodev.com>2016-04-12 21:38:24 -0700
commit7d358bea84f610c38d8a8f2ee77b5cb24ff4171d (patch)
tree5b7439fcf5b1b0cfac0c2e29b60625d6b3c76672 /blastem.c
parentac4d11e004b3ae64bf1c275b9083c45cf6458d77 (diff)
Remove the int number argument to vdp_int_ack since it is no longer used
Diffstat (limited to 'blastem.c')
-rw-r--r--blastem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blastem.c b/blastem.c
index f04f953..02dd3cb 100644
--- a/blastem.c
+++ b/blastem.c
@@ -290,7 +290,7 @@ m68k_context * sync_components(m68k_context * context, uint32_t address)
//printf("Set sync cycle to: %d @ %d, vcounter: %d, hslot: %d\n", context->sync_cycle, context->current_cycle, v_context->vcounter, v_context->hslot);
if (context->int_ack) {
//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);
- vdp_int_ack(v_context, context->int_ack);
+ vdp_int_ack(v_context);
context->int_ack = 0;
}
if (!address && (break_on_sync || save_state)) {