Skip to content

Commit

Permalink
Fixed interlacing wobbling issue with PJ64 1.7 when overscan is disabled
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
ata4 committed Oct 19, 2017
1 parent 34d31c7 commit 61bf561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vi.c
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ static void vi_process_end(void)
height = vres << ctrl.serrate;
output_height = (vres << 1) * V_SYNC_NTSC / v_sync;
int32_t x = h_start + minhpass;
int32_t y = (v_start + oldlowerfield) << ctrl.serrate;
int32_t y = (v_start + (emucontrolsvicurrent ? oldlowerfield : 0)) << ctrl.serrate;
buffer += x + y * pitch;
}

Expand Down

0 comments on commit 61bf561

Please sign in to comment.