mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-02-03 05:32:32 +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
|
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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user