diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-05-11 08:01:10 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-05-11 08:01:10 -0700 |
commit | 217697e9a74ad442b40a079fe9c664d87eac9002 (patch) | |
tree | d84a469ac7c51fe98b28e79390104fd76c794943 | |
parent | fa813fc755c00d298abd83d7e63690bed5b38fe6 (diff) |
Fix regression in mode 4 introduced when advance_output_line was added
-rw-r--r-- | vdp.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1972,6 +1972,7 @@ static void draw_right_border(vdp_context *context) context->cycles += slot_cycles;\ if ((slot+1) == LINE_CHANGE_MODE4) {\ vdp_advance_line(context);\ + advance_output_line(context);\ if (context->vcounter == 192) {\ return;\ }\ |