# HG changeset patch # User Michael Pavone # Date 1722491760 25200 # Node ID 593a4f3083356886829d734af492387a09e081b3 # Parent fa49e06d8c929e8a03a0fa915b8fe1f61fb67cea Fix issue that was causing double frame output in Double Dragon 2 diff -r fa49e06d8c92 -r 593a4f308335 vdp.c --- a/vdp.c Wed Jul 31 22:30:14 2024 -0700 +++ b/vdp.c Wed Jul 31 22:56:00 2024 -0700 @@ -2438,7 +2438,7 @@ output_line = 0; context->output_lines = 1; context->pushed_frame = 0; - } else { + } else if (!context->pushed_frame) { context->output_lines = output_line + 1; } } else if (output_line >= 0x200 - context->border_top) {