summaryrefslogtreecommitdiff
path: root/blastem.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-05-20 10:35:03 -0700
committerMichael Pavone <pavone@retrodev.com>2015-05-20 10:35:03 -0700
commit265a11e776d9708483024f48a9e0eaaf6686d00b (patch)
tree154c2952a1c130380d0106b30afbe54dcc2325f8 /blastem.c
parentb06a76dab4014a5ea1046eee6e4fdd819dbe7cbb (diff)
Update vscroll latch implementation to be more in line with what Eke-Eke has observed. Revert the change to vdp_cycles_to_line because it breaks hints on line 0. H-Int timing is still a little messed up, but the previous change made things worse.
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 48f1883..c11c4a4 100644
--- a/blastem.c
+++ b/blastem.c
@@ -247,7 +247,7 @@ m68k_context * sync_components(m68k_context * context, uint32_t address)
context->sync_cycle = gen->frame_end;
//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);
+ //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);
context->int_ack = 0;
}