mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
fixed interlaced mode vertical scaling for filtered/unfiltered rendering
This commit is contained in:
parent
8ec79e8780
commit
2aa6868725
@ -738,7 +738,7 @@ update_video (int width, int height)
|
||||
else // unfiltered and filtered mode
|
||||
{
|
||||
xscale = 320;
|
||||
yscale = vheight;
|
||||
yscale = (vheight > (vmode->efbHeight/2)) ? (vheight / 2) : vheight;
|
||||
}
|
||||
|
||||
// aspect ratio scaling (change width scale)
|
||||
|
Loading…
Reference in New Issue
Block a user