fixed interlaced mode vertical scaling for filtered/unfiltered rendering

This commit is contained in:
ekeeke31 2008-11-07 18:23:26 +00:00
parent 8ec79e8780
commit 2aa6868725

View File

@ -738,7 +738,7 @@ update_video (int width, int height)
else // unfiltered and filtered mode else // unfiltered and filtered mode
{ {
xscale = 320; xscale = 320;
yscale = vheight; yscale = (vheight > (vmode->efbHeight/2)) ? (vheight / 2) : vheight;
} }
// aspect ratio scaling (change width scale) // aspect ratio scaling (change width scale)